rot3d90(A, X, K)
rot3d90 - rotate 3D array 90 degrees around a specific axis
B = rot3D90(A, X) is the 90 degree counterclockwise rotation of the 3D
array A along a specific axis. X denotes the plane of rotation,
according to the table below. For instance, when X is 1 the plane of
rotation is formed by the 2nd and 3rd dimension.
rot3d90(A, X, K) is the K*90 degree rotation of A, K = +-1,+-2,...
If A has a dimension of [N, M, L], the dimensions of the rotation
depend on X. For value of X, the subindex in the X-th dimension will be
unaffected. Therefore, specific vectors will be unaffected.
Note that rot3d90(A,3) and rot90(A) produce the same result.
X Rotation plane Dimension of B Unaffected vectors
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1 dims 2 & 3 [N, L, M] N-by-1 (row)
2 dims 1 & 3 [L, M, N] 1-by-N (column)
3 dims 1 & 2 [M, N, L] 1-by-1-by-N (plane)
Example:
A = cat(3,[1 2 ; 3 4],[5 6 ; 7 8])
B = rot3d90(A, 2) % rotation in plane formed by 1st and 3rd dimension
% B(:,:,1) = 5 6
% 1 2
% B(:,:,2) = 7 8
% 3 4
See also rot90, flip
Cita come
Jos (10584) (2024). rot3d90(A, X, K) (https://www.mathworks.com/matlabcentral/fileexchange/65753-rot3d90-a-x-k), MATLAB Central File Exchange. Recuperato .
Compatibilità della release di MATLAB
Compatibilità della piattaforma
Windows macOS LinuxCategorie
Tag
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Scopri Live Editor
Crea script con codice, output e testo formattato in un unico documento eseguibile.