Can this for loop be made into array operations?

Hello,
I have the code:
% V is a 3 x n array
% T is a 3 x 3 rotation matrix
% U is a 3 x n array (rotated V)
for i = 1:n
U(:,i) = T * V(:,i);
end
which I have been attempting to rewrite as array operations. Does anybody have a solution for this?

 Respuesta aceptada

Oleg Komarov
Oleg Komarov el 13 de Jul. de 2011

1 comentario

Joseph
Joseph el 13 de Jul. de 2011
I feel like quite the dunce. The math is apparent after reviewing the comments -- thanks for pointing out my idiocy.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Preguntada:

el 13 de Jul. de 2011

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by