Difference between revisions of "Manuals/calci/MATRIXTYPE"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:30px">'''MATRIXTYPE (Matrix,Type)'''</div><br/> *<math>Matrix </math> is the set of values. *<math>Type </math> is the type of the matrix. ==Descripti...") |
|||
| Line 16: | Line 16: | ||
#MATRIXTYPE([[1,0,0],[0,1,0],[0,0,1]],"projection") = true | #MATRIXTYPE([[1,0,0],[0,1,0],[0,0,1]],"projection") = true | ||
#MATRIXTYPE([[1,0,1],[0,1,0],[0,0,1]],"projection") = false | #MATRIXTYPE([[1,0,1],[0,1,0],[0,0,1]],"projection") = false | ||
| + | |||
| + | |||
| + | ==Related Videos== | ||
| + | |||
| + | {{#ev:youtube|v=4lAyqscuTc8&t=18s|280|center|Type of a Matrix}} | ||
==See Also== | ==See Also== | ||
Revision as of 11:54, 25 April 2019
MATRIXTYPE (Matrix,Type)
- 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 Matrix } is the set of values.
- 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 Type } is the type of the matrix.
Description
- This function is the tester function of Idempotent and Projection matrix.
- 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 MATRIXTYPE (Matrix,Type)} ,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 Matrix} is set of values 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 Type} is the type of the matrix either Idempotent or Projection.
- Idempotent a matrix which, when multiplied by itself, yields itself.
- A square matrix P is called Projection then 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 P^2=P} .
- So the given matrix values are satisfied Idempotent and the given Matrix Type also Idempotent then this function will return as TRUE otherwise FALSE.
- In same way the given values are satisfies Projection and the Matrix Type also Projection then this function will return as TRUE otherwise FALSE.
Examples
- MATRIXTYPE(IM(2),"idempotent") = true
- MATRIXTYPE([[1,0,1],[0,1,2]],"idempotent") = false
- MATRIXTYPE([[1,0,0],[0,1,0],[0,0,1]],"projection") = true
- MATRIXTYPE([[1,0,1],[0,1,0],[0,0,1]],"projection") = false
Related Videos
See Also
References