Difference between revisions of "Manuals/calci/MATRIXREVERSE"
Jump to navigation
Jump to search
Line 40: | Line 40: | ||
| 12 || 9 || 6 | | 12 || 9 || 6 | ||
|} | |} | ||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=Fg7_mv3izR0&t=8s|280|center|Matrix}} | ||
==See Also== | ==See Also== |
Latest revision as of 13:20, 17 April 2019
MATRIXREVERSE (a)
- is any matrix.
Description
- This function shows the reversing entries of a given matrix.
- In , is any matrix of any order.
- Here all the entries are showing in reverse order.
- That is all the rows and columns also reversed.
- Consider 3x3 matrix .
- The reverse of a matrix .
Examples
1. MATRIXREVERSE([[1,-1,2,-1],[2,-2,3,-3],[1,1,1,0],[1,-1,4,3]])
3 | 4 | -1 | 1 |
0 | 1 | 1 | 1 |
-3 | 3 | -2 | 2 |
-1 | 2 | -1 | 1 |
2. MATRIXREVERSE([[6,9,12],[43,16,-17],[3,8,10]])
10 | 8 | 3 |
-17 | 16 | 43 |
12 | 9 | 6 |