Difference between revisions of "Manuals/calci/MATRIXINTDIV"
Jump to navigation
Jump to search
| (One intermediate revision by the same user not shown) | |||
| Line 14: | Line 14: | ||
==Examples== | ==Examples== | ||
| − | + | 1. MATRIXINTDIV([[6,16],[10,-12]],[[4,4],[5,4]]) | |
{| class="wikitable" | {| class="wikitable" | ||
| Line 22: | Line 22: | ||
|2 ||-3 | |2 ||-3 | ||
|} | |} | ||
| − | + | 2. MATRIXINTDIV([[4,5,10],[-12,34,31]],[[17,18,27],[29,-24,31]]) | |
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
| Line 29: | Line 29: | ||
| -1 ||-2 || 1 | | -1 ||-2 || 1 | ||
|} | |} | ||
| + | |||
| + | ==Related Videos== | ||
| + | |||
| + | {{#ev:youtube|v=oTJ7R2ziR28&t=2s|280|center|Matrix Division}} | ||
==See Also== | ==See Also== | ||
Latest revision as of 13:56, 12 April 2019
MATRIXINTDIV (a,b)
- and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle b} 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 Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle MATRIXINTDIV (a,b)} , Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle a} and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle b} 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
1. MATRIXINTDIV([[6,16],[10,-12]],[[4,4],[5,4]])
| 1 | 4 |
| 2 | -3 |
2. MATRIXINTDIV([[4,5,10],[-12,34,31]],[[17,18,27],[29,-24,31]])
| 0 | 0 | 0 |
| -1 | -2 | 1 |