Difference between revisions of "Manuals/calci/MATRIXEQUAL"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div style="font-size:30px">'''MATRIXDIVPARTS (a,b)'''</div><br/> *<math>a </math> and <math> b</math> are any two matrices. ==Description== *This function is the tester fun...")
 
Line 1: Line 1:
<div style="font-size:30px">'''MATRIXDIVPARTS (a,b)'''</div><br/>
+
<div style="font-size:30px">'''MATRIXEQUAL (a,b)'''</div><br/>
 
*<math>a </math> and <math> b</math> are any two matrices.
 
*<math>a </math> and <math> b</math> are any two matrices.
  

Revision as of 14:15, 14 June 2017

MATRIXEQUAL (a,b)


  • and are any two matrices.


Description

  • This function is the tester function of matrix equalities.
  • In , and are any two matrices.
  • For two matrices to be equal, they must be of the same size and have all the same entries in the same places
  • Suppose all the entries of the two matrices are equal then this function return as TRUE.
  • If any one entry is not equal compared with the first matrix and second matrix then this function will return as FALSE.


Examples

  1. MATRIXEQUAL([2,4;5,6],[2,4;5,6]) = true
  2. MATRIXEQUAL([3,4,5;9,8,7],[3,4,5;8,9,7]) = false
  3. MATRIXEQUAL([1,4;2,5;3,6],[1,4,2;5,3,6]) = false

See Also

References