IsMNMatrix: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
PRanz (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
(6 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
==Zugehörige Evaluatoren== | ===Zugehörige Evaluatoren=== | ||
*'''MathEvaluator''' | *'''MathEvaluator''' | ||
===Beschreibung=== | ===Beschreibung=== | ||
''isMNMatrix'' gibt wahr(true) zurück falls der erste Parameter eine [[Matrix]] ist und der zweite und dritte Parameter die Dimensionen der Matrix entsprechen, nicht wahr(false) ansonst. | ''isMNMatrix'' gibt wahr(true) zurück falls der erste Parameter eine [[Matrix]] ist und der zweite und dritte Parameter die Dimensionen der Matrix entsprechen, nicht wahr(false) ansonst. | ||
===Syntax=== | ===Syntax=== | ||
isMNMatrix( | isMNMatrix([[Matrix]] matrix, [[Ganzzahl]] zahl1, [[Ganzzahl]] zahl2) | ||
===Parameter=== | ===Parameter=== | ||
* ''' | * '''matrix''' - Eine [[Matrix]] | ||
* ''' | * '''zahl1''' - M (Anzahl der Zeilen) | ||
* ''' | * '''zahl2''' - N (Anzahl der Spalten) | ||
===Return Value=== | ===Return Value=== | ||
Zeile 16: | Zeile 17: | ||
===Beispiele=== | ===Beispiele=== | ||
isMNMatrix(matrix(matrixrow(0,1),matrixrow(2,3),matrixrow(4,5)),3,2) --> returns true | isMNMatrix(matrix(matrixrow(0,1),matrixrow(2,3),matrixrow(4,5)),3,2) --> returns ''true'' | ||
isMNMatrix(matrix(matrixrow(0,1),matrixrow(2,3),matrixrow(4,5)),2,3) --> returns false | isMNMatrix(matrix(matrixrow(0,1),matrixrow(2,3),matrixrow(4,5)),2,3) --> returns ''false'' | ||
isMNMatrix(2,3,4) --> returns false | isMNMatrix(2,3,4) --> returns ''false'' | ||
[[Kategorie:Math-Evaluatorfunktion]][[Kategorie:Testfunktionen]] | [[Kategorie:Math-Evaluatorfunktion]][[Kategorie:lineare Algebra]][[Kategorie:Testfunktionen]][[Kategorie:JACK2]][[Kategorie:JACK3]] |
Aktuelle Version vom 18. April 2024, 08:29 Uhr
Zugehörige Evaluatoren
- MathEvaluator
Beschreibung
isMNMatrix gibt wahr(true) zurück falls der erste Parameter eine Matrix ist und der zweite und dritte Parameter die Dimensionen der Matrix entsprechen, nicht wahr(false) ansonst.
Syntax
isMNMatrix(Matrix matrix, Ganzzahl zahl1, Ganzzahl zahl2)
Parameter
- matrix - Eine Matrix
- zahl1 - M (Anzahl der Zeilen)
- zahl2 - N (Anzahl der Spalten)
Return Value
- Gibt True oder False zurück.
Beispiele
isMNMatrix(matrix(matrixrow(0,1),matrixrow(2,3),matrixrow(4,5)),3,2) --> returns true isMNMatrix(matrix(matrixrow(0,1),matrixrow(2,3),matrixrow(4,5)),2,3) --> returns false isMNMatrix(2,3,4) --> returns false