mathnet-numerics
                                
                                
                                
                                    mathnet-numerics copied to clipboard
                            
                            
                            
                        Math.NET Numerics
_In the method "public void LUFactor(float[] data, int order, int[] ipiv)", you have in your code:_ // Compute multipliers. if (j < order & data[indexjj] != 0.0) { ... }...
Hi I notice that some combination of parameters of PERT distribution may throw `ArgumentException` and I am unsure if this is intentional. ```csharp [Theory] [InlineData(7.7, 8, 7.9)] // Pass [InlineData(7.8,...
Hi, I'm using Matrix. It's a sparse matrix, but it can grow to the size of tens of thousands. I see, that there is Matrix.Storage, that contains the data for...
MatrixNormalDistribution is missing the CumulativeDistribution method. The MatrixNormalDistribution is a generalization of the MultiVariate Normal to the matrix case. Considering also that a MultivariateNormal distribution is also missing, there is...
In the [**BfgsMinimizer**](https://github.com/mathnet/mathnet-numerics/blob/master/src/Numerics/Optimization/BfgsMinimizer.cs), the reason for exit is always the absolute gradient. ```csharp return new MinimizationWithLineSearchResult(candidate, iterations, ExitCondition.AbsoluteGradient, totalLineSearchSteps, iterationsWithNontrivialLineSearch); ``` I believe that the reason for termination should be...
The "MatlabWrier" should be "MatlabWriter".
To improve the developer ecosystem all nuget packages should be packed with strongly named dll's and the currently strongly named version deprecated on nuget.org. With this change, any downstream application/library...
**WHEN** Calculating eigen values from a DenseMatrix or` Matrix` populated with the same numeric values **GIVEN** the numeric datatypes present in DenseMatrix or `Matrix` (i.e. double/float vs only double vs...
I made the X, C0, C1, C2, C3, and IndefiniteIntegral properties publicly accessible in CubicSpline interpolation. In my use case, I needed to extract the coefficients, and having them as...