rotating N-D matrices

1 次查看(过去 30 天)
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?

采纳的回答

Sean de Wolski
Sean de Wolski 2014-10-17
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

更多回答(1 个)

john creighton
john creighton 2014-10-17
yup that worked. thanks sean

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by