rotating N-D matrices

1 visualización (últimos 30 días)
john creighton
john creighton el 17 de Oct. de 2014
Respondida: john creighton el 17 de Oct. de 2014
hey everyone i have 2d matrix which i have repeated 24 time using repmat function. i need to rotate each of these repeated matrices by 7.5degrees. ie 1st matrix rotated 0deg, 2nd matrix rotated 7.5deg, third matrix rotated 15deg and so on... any suggestions?

Respuesta aceptada

Sean de Wolski
Sean de Wolski el 17 de Oct. de 2014
Use a for-loop over the pages and imrotate
Something like:
X = your_original_2d_image
Xrot = zeros([size(X) 24],'like',X);
for ii = 1:24
Xrot(:,:,ii) = imrotate(X,7.5*ii,'crop')
end

Más respuestas (1)

john creighton
john creighton el 17 de Oct. de 2014
yup that worked. thanks sean

Categorías

Más información sobre Creating and Concatenating Matrices 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!

Translated by