查询 MathNet.Numerics 命名空间中向量的长度

Query length of a vector in MathNet.Numerics namespace

有什么方法可以找到 MathNet.Numerics 命名空间中 Vector 数据结构的向量(甚至矩阵)的维数。类似于

int dimension = 3;
Vector<int> x = Vector<int>.Build.Dense(dimension);
int lengthOfX = x.Length();

各自的名称 属性 有点违反直觉,但它就在那里:Vector<T>.Count:

Gets the length or number of dimensions of this vector.

参见documentation

对于 Matrix<T>,属性是 ColumnCountRowCountdocumentation