Hi,
There's no need to write the full namespace, just use relative ones as usual. For example:
using MathNet.Numerics.LinearAlgebra;var a = new Double.DenseVector(newdouble[] ...);var mat = new Complex.DenseMatrix(2,3);
Nevertheless, you may still want to include the .Generic, .Double and .Complex namespaces as well, if not just to get the extension methods.
Thanks,
Christoph