Difference between revisions of "Manuals/calci/MATRIXINTDIV"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:30px">'''MATRIXINTDIV (a,b)'''</div><br/> *<math>a </math> and <math> b</math> are any two matrices. ==Description== *This function shows quotient of th...") |
|||
Line 27: | Line 27: | ||
| 0 || 0 || 0 | | 0 || 0 || 0 | ||
|- | |- | ||
− | |-1 ||-2 || 1 | + | | -1 ||-2 || 1 |
|} | |} | ||
− | |||
==See Also== | ==See Also== |
Revision as of 14:04, 14 June 2017
MATRIXINTDIV (a,b)
- and are any two matrices.
Description
- This function shows quotient of the Matrix division.
- But this function will return the integer part of quotient only.
- In , and are any two matrices.
- Normally we could not do the matrix division directly.
- Instead of that we can multiply by an inverse.
- This function is taking corresponding entries and doing the division for each element.
- Division is one of the four basic operations of arithmetic.
- Division is splitting into equal parts or groups.
- In this matrix division,will return the result in the integer format of the quotient.
Examples
- MATRIXINTDIV([[6,16],[10,-12]],[[4,4],[5,4]])
1 | 4 |
2 | -3 |
- MATRIXINTDIV([[4,5,10],[-12,34,31]],[[17,18,27],[29,-24,31]])
0 | 0 | 0 |
-1 | -2 | 1 |