Difference between revisions of "Array.flip()"

From ZCubes Wiki
Jump to navigation Jump to search
 
Line 34: Line 34:
 
==See Also==
 
==See Also==
 
[[Array.transpose() |Transpose]]
 
[[Array.transpose() |Transpose]]
 +
 
[[Array.flipparts() | Flipparts]]
 
[[Array.flipparts() | Flipparts]]

Latest revision as of 04:43, 17 April 2020

Array.flip()

Same as Transpose

Returns the Transpose/flip the given matrix.

[[1,8,3],[7,4,5],[9,13,45]].flip()

1 7 9
8 4 13
3 5 45


MS(4).flip()

1 12 8 13
15 6 10 3
14 7 11 2
4 9 5 16

See Also

Transpose

Flipparts