Difference between revisions of "Manuals/calci/MATRIXNOTEQUAL"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:30px">'''MATRIXNOTEQUAL (a,b)'''</div><br/> *<math>a</math> and <math>b</math> are any two matrices. ==Description== *This function is the tester functi...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 13: | Line 13: | ||
==Examples== | ==Examples== | ||
− | + | # MATRIXNOTEQUAL([[72,25],[54,-83]],[[72,25],[54,-83]]) = false | |
− | + | # MATRIXNOTEQUAL([[6,5],[4,-3]],[[5,6],[4,-3]]) = true | |
− | + | # MATRIXNOTEQUAL([[1],[2]],[1,2]) = true | |
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=NjaQKHlntGE|280|center|Equal Matrix}} | ||
==See Also== | ==See Also== |
Latest revision as of 13:57, 15 April 2019
MATRIXNOTEQUAL (a,b)
- and are any two matrices.
Description
- This function is the tester function of matrix inequalities.
- 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.
- If the Matrices are equal it should follow the below three conditions.
- Both the matrices has the same number of rows.
- Both the matrices has the same number of columns.
- Corresponding elements within each matrix are equal.
- Suppose any one entries are different while comparing two matrices then this function will return as TRUE.Suppose all the entries are same then this function will return as FALSE.
Examples
- MATRIXNOTEQUAL([[72,25],[54,-83]],[[72,25],[54,-83]]) = false
- MATRIXNOTEQUAL([[6,5],[4,-3]],[[5,6],[4,-3]]) = true
- MATRIXNOTEQUAL([[1],[2]],[1,2]) = true