VectorQ(v)
returns
True
ifv
is a list of elements which are not themselves lists.
VectorQ(v, f)
returns
True
ifv
is a vector andf(x)
returnsTrue
for each elementx
ofv
.
See
- Wikipedia - Vector (mathematics and physics)
- Youtube - Vectors, what even are they? | Essence of linear algebra, chapter 1
- Youtube - Linear combinations, span, and basis vectors | Essence of linear algebra, chapter 2
>> VectorQ({a, b, c})
True
- ✅ - full supported