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