Difference between revisions of "Manuals/calci/MATRIXDIVIDE"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div style="font-size:30px">'''MATRIXDIVIDE (a,b,ConsiderUnits)'''</div><br/> *<math> a </math> and <math> b</math> are any two matrices. ==Description== *This function shows...")
 
Line 27: Line 27:
 
a_{m1}/b_{m1} & a_{m2}/b_{m2}& \cdots & a_{mn}/b_{mn}
 
a_{m1}/b_{m1} & a_{m2}/b_{m2}& \cdots & a_{mn}/b_{mn}
 
\end{bmatrix}</math>
 
\end{bmatrix}</math>
 +
 +
 +
==Examples==
 +
1. MATRIXDIVIDE([[6,16],[10,-12]],[[3,4],[5,4]])
 +
{| class="wikitable"
 +
|-
 +
| 2 || 4 
 +
|-
 +
| 2 || -3
 +
|}
 +
2. MATRIXDIVIDE([[32,14,15],[16,-32,76]],[[3,2,5],[-4,6,5]])
 +
{| class="wikitable"
 +
|-
 +
| 10.666666666666666 || 7 || 3 
 +
|-
 +
| -4 || -5.333333333333333 || 15.2
 +
|}
 +
 +
==References==
 +
*[http://www.wikihow.com/Divide-Matrices Matrix Division]
 +
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
*[[ Z3 |  Z3 home ]]

Revision as of 18:09, 13 June 2017

MATRIXDIVIDE (a,b,ConsiderUnits)


  • and are any two matrices.

Description

  • This function shows the division value of the given two matrices for each corresponding entries.
  • In , and are two matrices.
  • Matrix division is the basic operation of dividing two matrices with the corresponding entries.
  • Two matrices must have an equal number of rows and columns.
  • 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 of matrices A and B is denoted by


Examples

1. MATRIXDIVIDE([[6,16],[10,-12]],[[3,4],[5,4]])

2 4
2 -3

2. MATRIXDIVIDE([[32,14,15],[16,-32,76]],[[3,2,5],[-4,6,5]])

10.666666666666666 7 3
-4 -5.333333333333333 15.2

References