mathnet-numerics
mathnet-numerics copied to clipboard
Math.NET Numerics
Hello, the implementation of Hypotenuse is buggy. The following test fails: ``` [Fact] void TestHypotenuse() { Assert.True(double.IsNaN(SpecialFunctions.Hypotenuse(double.NaN, 0))); } ``` This has severe consequences, because e.g. the following test also...
let's assume the following matrices a sparse matrix 'kk' 26400x26400 a vector 'fg' 26400x1 delta = kk\fg evaluating delta in matlab takes about ~0.8 seconds but as there is no...
We are trying to resolve some diffs across different systems and I am trying to play around with the MKL_CBWR environment setting but I'm not positive that the environment setting...
addressing issue #1061
The current Newton's method implementation has no option to force Hessian to be positive definite, which is a common technique to improve convergence. In the current implementation the algorithm will...
I am a user of the `MathNet.Numerics` library, extensively utilizing its linear algebra capabilities for performance-critical applications. I've noticed that the current API provides several methods for creating vectors from...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. Release notes Sourced from Microsoft.NET.Test.Sdk's releases. v17.9.0 What's Changed Remove dependency on Nuget.Frameworks by @nohwnd in microsoft/vstest#4693 Add platform guard by @dotMorten in microsoft/vstest#4737...
Bumps [NUnitLite](https://github.com/nunit/nunit) and [NUnit](https://github.com/nunit/nunit). These dependencies needed to be updated together. Updates `NUnitLite` from 3.13.3 to 4.1.0 Release notes Sourced from NUnitLite's releases. NUnit 4.1.0 See release notes NUnit 4.0.1...
I am reaching out as a user of the `MathNet.Numerics` library who regularly utilizes its `Matlab` capabilities for reading `.mat` files. Currently, I encounter an issue where I need to...