elements property
int
get
elements
Returns the number of elements in the vector.
Implementation
int get elements => _vectorType == VectorType.row ? _matrix.n : _matrix.m;
Returns the number of elements in the vector.
int get elements => _vectorType == VectorType.row ? _matrix.n : _matrix.m;