06-08-2023, 05:53 PM
(06-08-2023, 05:35 PM)tyFlow Wrote: What's the error you see when calling the function in SimulationStep?
this is the test code..
-------------------------------
using MathNet.Numerics.Distributions;
void hello()
{
double[] samples = SystemRandomSource.Doubles(100, 90);
}
the above works, however:
----------------------------------
public void simulationStep()
{
double[] samples = SystemRandomSource.Doubles(100, 90);
}
says: 'could not load file or assembly 'MathNet.Numerics4.8.0.0, Culture=neutral, PublicKeyToken=Null' or one of its dependencies.. System cannot find the file specified....'