Difference between revisions of "Manuals/calci/MATRIXJOIN"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:30px">'''MATRIXJOIN (a,b)'''</div><br/> *<math>a</math> and <math>b</math> are any two matrices. ==Description== *This function is used to join each row...") |
|||
Line 26: | Line 26: | ||
|- | |- | ||
| 0 || -2 || 7 || 4 || 8 || 12 | | 0 || -2 || 7 || 4 || 8 || 12 | ||
− | |} | + | |} |
+ | |||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=3cnIa0fYJkY|280|center|Identity Matrix}} | ||
==See Also== | ==See Also== |
Latest revision as of 13:54, 12 April 2019
MATRIXJOIN (a,b)
- and are any two matrices.
Description
- This function is used to join each row of the matrices.
- In , and are any two matrices.
- Here all the entries in the first row of the first matrix is joined with the first row of the second matrix.
- In the same way all the respected rows joining first matrix with second matrix.
- In this number of the rows of first and second matrix should be the same.
- If any one of the rows are not equal then this function will return the result as NaN.
Examples
1. MATRIXJOIN([2,7,6;4,5,6],[3,5,4;9,6,1])
2 | 7 | 6 | 3 | 5 | 4 |
4 | 5 | 6 | 9 | 6 | 1 |
2. MATRIXJOIN([2,4,0;8,7,2;0,-2,7],[3,-5,-9;7,5,1;4,8,12])
2 | 4 | 0 | 3 | -5 | -9 |
8 | 7 | 2 | 7 | 5 | 1 |
0 | -2 | 7 | 4 | 8 | 12 |