For Loop in 3D Array
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MarshallSc
el 31 de Mayo de 2022
Comentada: MarshallSc
el 31 de Mayo de 2022
For 2D arrays, the operation that I want to execute is:
a = rand(3,3);
for i = 1:numel(a)
for j = 1:numel(a)
out(i,j) = (a(i) - a(j)) / (a(i) + a(j));
end
end
Which will turn the out into a skew-symmetric matrix. Now I want to perform the same operation instead the matrix is in 3D, how can I do that? The speed is important since my original matrix is (100,100,726). Thanks!
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 31 de Mayo de 2022
Editada: Dyuman Joshi
el 31 de Mayo de 2022
a = rand(3,3,4);
for k=1:size(a,3)
y=a(:,:,k);
for i=1:size(y,1)
for j=1:size(y,2)
out(i,j,k)=(y(i) - y(j))/(y(i) + y(j));
end
end
end
out
2 comentarios
Dyuman Joshi
el 31 de Mayo de 2022
It will be skew-symmetric matrix. I have made an edit, take a look at it again.
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!