@wil wrote:
I have an older Visual Studio 2012 C# .NET 4.5 project that uses a reference to the the MathNet.Numerics.dll for Linear Algebra. In the project code I used the following fragment to reference DenseMatrix
using MathNet.Numerics.LinearAlgebra;
using MathNet.Numerics.LinearAlgebra.Double;namespace FOO
{
public class Matrix_Double : MathNet.Numerics.LinearAlgebra.Double.DenseMatrix
{
…
…I now want to update my development environment to Visual Studio C# .NET 4.5 2017 to implement the NuGet MathNet.Numerics.MKL.Win-x64 package buit after successfully installing the package, changing all of my build settings to x64, and adding the MathNet.Numerics.MKL.Win-x64 reference to my project I’m still unable to properly reference MathNet as above. Has anyone else run into this issue? I’ve searched the documentation available but could not find a solution.
Any suggestions would be greatly appreciated.
Thanks;
Wil
Posts: 1
Participants: 1