I have a C# application, I installed MathNet.Numerics 3.17.0 via Nuget.
I am trying to use the fourier functions. When I run this line of code:
Fourier.Forward2D(n);
It throws an exception "Specified method not supported".
Console.WriteLine(MathNet.Numerics.Control.LinearAlgebraProvider.ToString());
Returns "Managed".
I swear this was working, but now it is broken.
Any ideas on how to make this work?
FYI I was using the MKL package for a minute, that seems to work. I want to use the native package "Managed" because I am distributing the application via clickonce....
Any ideas appreciated!