Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. A = rand(3,4,5); (5 3x4 matrices)
  2. B = permute(A,[3 2 1]);
  3.  
  4. returns
  5.  
  6. 3 times a 5x3 Matrix
  7. 1) Contains first column of each matrix
  8. 2) Contains second column of each matrix
  9. 3) Contains third column of each matrix
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement