IsMatrix
Zur Navigation springen
Zur Suche springen
Beschreibung
isMatrix gibt wahr(true) zurück falls der angegebene Parameter eine Matrix, nicht wahr(false) ansonst.
Syntax
isMatrix(a)
Parameter
- a - Matrix
Return Value
- Gibt True oder False zurück.
Beispiele
<math>isMatrix(matrix(matrixrow(1,1),matrixrow(0,4)))</math> --> returns <math>True</math>
<math>isMatrix(matrix(matrixrow(),matrixrow()))</math> --> returns <math>True</math>
<math>isMatrix(list(2,3,4,5,6,7))</math> --> returns <math>False</math>
<math>isMatrix(2)</math> --> returns <math>False</math>