Is there any way to find the dimensions of a vector (or even matrix) for a Vector data structure in the MathNet.Numerics namespace. Something along the lines of
int dimension = 3;
Vector<int> x = Vector<int>.Build.Dense(dimension);
int lengthOfX = x.Length();