Member of the linalgebra class.
c = flipud(a)
Flips a matrix from top to bottom.
| Name | Description |
| a | Specifies the matrix you want to flip. |
| Name | Description |
| c | Returns a with flipped elements. c is a matrix of the same size as a. |
A = [1, 2, 3, 4; 5, 6, 7, 8]
C = flipud(A)