Currently, I am experiencing an exception caused by MathNet.Numerics C# library during the initial usage of Inverse() function. After first time usage, I dont have any problem. I might be missing some details.
Simply following code is used. (Kt is prefedined)
Matrix<double> Ktinv = DenseMatrix.Create(4, 4, 0);
Matrix<double> KT_Copy = DenseMatrix.OfArray(Kt);
Ktinv = KT_Copy.Inverse();
I am guessing that, it might be CudeProvider path exception. Did anyone experience such a problem?
NuGet Version: 4.11.0