IsVector
Zur Navigation springen
Zur Suche springen
Beschreibung
isVector gibt wahr(true) zurück falls der angegebene Parameter ein Vektor ist, nicht wahr(false) ansonst.
Syntax
isVector(a)
Parameter
- a - Vector
Return Value
- Gibt True oder False zurück.
Beispiele
<math>isVector(vector(2,3,4,5,6,7))</math> --> returns <math>True</math>
<math>isVector(tuple())</math> --> returns <math>False</math>
<math>isVector(list(2,3,4,5,6,7))</math> --> returns <math>False</math>
<math>isVector(2)</math> --> returns <math>False</math>