I've got problem with types while working with vectors in MathNet.
I'm using
using MathNet.Numerics.LinearAlgebra.Double;
so all Vectors and Matrices are type Double.Vector
etc.
But for example if I want to get particular row from matrix ->
V.Row(V.RowCount-1);
it returns type Vector<double>
, so this throws "cant convert" error:
Vector v = myMatrix.Row(0);
Is there some Vector<double>
to Double.Vector
convertor or trick how its done?