mathnet-numerics icon indicating copy to clipboard operation
mathnet-numerics copied to clipboard

Math.NET Numerics

Results 210 mathnet-numerics issues
Sort by recently updated
recently updated
newest added

The release notes says something about making it better for x-plat, but I'm unable to make native providers work in linux at all. Is anyone else able to? Should it...

Currently, I'm writing a quadratic minimization problem that looks like this (an example from [matlab](https://www.mathworks.com/help/optim/ug/quadprog.html?s_tid=srchtitle_quadprog_1&requestedDomain=)) ![67bac9fbac258ad1580ced80597754b](https://user-images.githubusercontent.com/26361428/187818310-d786db46-dc0a-4936-86bd-356c1ce07086.png) However, I don't know how to express the inequality constraint `c

This fixes handing up EVD as described here: https://github.com/mathnet/mathnet-numerics/issues/595

Bumps [Microsoft.NETFramework.ReferenceAssemblies](https://github.com/Microsoft/dotnet) from 1.0.2 to 1.0.3. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Microsoft.NETFramework.ReferenceAssemblies&package-manager=nuget&previous-version=1.0.2&new-version=1.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Hello, I have used some of your `Vector` class. It has problems with the function `Equals`. The result is some vector of doubles are equal but this function returns false....

Since https://discuss.mathdotnet.com/c/numerics is giving me a timeout I would like to use this PR to ask the Mathnet maintainers if there is a chance for this parsing code to be...

Title says it all really, it would be great to have a SubMatrix function that does not create a copy, for performance reasons.

https://github.com/mathnet/mathnet-numerics/blob/f19641843048df073b80f6ecfcbb229d3258049b/src/Numerics/Optimization/LevenbergMarquardtMinimizer.cs#L161 Why is the vector length (`Pstep.L2Norm()`) compared to the square of the vector length (`P.DotProduct(P)`)? Looks like a bug. Of course, if the parameters were scaled correctly (`|Pi|~1`) this...

As already posted on stackoverflow (https://stackoverflow.com/q/77803357/19921514) I'm having issues with 6th order polynomial fit of 100 datapoints. I'm using Svd decomposition to get the most acurate results, but on some...