Owning Class: linalgebra
Requires: MathScript RT Module
c = mirrorv(a)
Legacy Name: flipud
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 = mirrorv(A)