+ 3
How can I show the reverse version of a matrix in matlab ?
M= 12 34 67 31 7 77 34 58 3 44 33 67 It must be shown like that 3 44 33 67 7 77 34 58 12 34 67 31
3 Answers
+ 5
flipud(M) is the builtin function used.
https://www.mathworks.com/matlabcentral/answers/59819-how-to-reverse-matrix
+ 1
Avinesh thanks that's what I need so far â€â€đ