Difference between revisions of "Manuals/calci/MATRIXFLIP"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
==Description== | ==Description== | ||
*This function returns flip value of the given matrix. | *This function returns flip value of the given matrix. | ||
− | *In <math>MATRIXFLIP(GeneratedMatrix,About)</math>,<math>Generatedmatrix</ | + | *In <math>MATRIXFLIP(GeneratedMatrix,About)</math>,<math>Generatedmatrix</math> is any matrix. |
*Here this function is flipping array up to down. | *Here this function is flipping array up to down. | ||
*That is row values of the given matrix is changed in to column value of the flipped matrix. | *That is row values of the given matrix is changed in to column value of the flipped matrix. | ||
Line 30: | Line 30: | ||
|null || null | |null || null | ||
|} | |} | ||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=3cnIa0fYJkY|280|center|Identity Matrix}} | ||
==See Also== | ==See Also== |
Latest revision as of 13:53, 12 April 2019
MATRIXFLIP (GeneratedMatrix,About)
- is any matrix.
Description
- This function returns flip value of the given matrix.
- In , is any matrix.
- Here this function is flipping array up to down.
- That is row values of the given matrix is changed in to column value of the flipped matrix.
- So first row values will display in the first column value.
- When doing the flipping of rows in to columns number of rows are less than number of columns then the remaining values show as null.
- For example,MATRIXFLIP([10,16;10,18]),here after flipping the first row entries are 10 and 10 and 2nd row entries are 16 and 18.
Examples
1. MATRIXFLIP([2,3,4;6,8,3;12,15,17])
2 | 6 | 12 |
3 | 8 | 15 |
4 | 3 | 17 |
2. MATRIXFLIP([4,6;3,8;5,39])
4 | 3 |
6 | 8 |
null | null |
Related Videos
See Also
References