mathnet-numerics
mathnet-numerics copied to clipboard
Math.NET Numerics
Bumps [FsUnit](https://github.com/fsprojects/FsUnit) from 4.2.0 to 5.0.1. Changelog Sourced from FsUnit's changelog. 5.0.1 - Aug 5, 2022 Docs updates Dependecies update 5.0.0 - Apr 9, 2022 [BREAKING] xUnit equality assertions executed...
```csharp var polynomialCoefficients = new double[] { 1.19469367e+21, 1.67924808e+16, 3.97850921e+10, 1.39471145e+00, 1.56417732e-07 }; var polynomial = new Polynomial(polynomialCoefficients); ``` The result of `polynomial.Roots()` will return the following roots: [0]: {(-4458290,732664504,...
It looks like the MKL native detection capability will need to be refactored, as when I build .NET 6.0 (unrelated) from the source base, everything works fine and faster for...
Currently when multiplying a `DenseMatrix` with a `Vector` there is a path to a `ILinearAlgebraProvider` when the multiplicand and the result are both `DenseVector`, otherwise we fall back to a...
Fit model parameters may optionally be box constrained for nonlinear minimization (see e.g. [NonlinearMinimizerBase.cs](https://github.com/mathnet/mathnet-numerics/blob/834a2d6425b66042d7528154e2e2532a75540b04/src/Numerics/Optimization/NonlinearMinimizerBase.cs)). However, a current limitation is that one has to either provide a full set of lower...
No tests added (so far). Fixes #931
I find that there are several bugs with 1x0 and 0x1 matrices (Matrix.Dense). - The method toString() cannot work normally with 1x0 and 0x1 matrices (althogh it does work with...
Hello, I have noticed a bug in Interpolate.Linear Here a unit test to reproduce ``` [Fact(DisplayName = "Interpolation NAN error")] public void Test42() { var interpolation = Interpolate.Linear(new[] { 40.0,...
Bumps [FSharp.Core](https://github.com/dotnet/fsharp) from 5.0.2 to 6.0.5. Changelog Sourced from FSharp.Core's changelog. Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information. About the release...
The MathNet.Numerics.Providers.MKL.Signed nuget package depends on MathNet.Numerics instead of MathNet.Numerics.Signed.