MathNet.Numerics
2.6.0
See the version list below for details.
dotnet add package MathNet.Numerics --version 2.6.0
NuGet\Install-Package MathNet.Numerics -Version 2.6.0
<PackageReference Include="MathNet.Numerics" Version="2.6.0" />
<PackageVersion Include="MathNet.Numerics" Version="2.6.0" />
<PackageReference Include="MathNet.Numerics" />
paket add MathNet.Numerics --version 2.6.0
#r "nuget: MathNet.Numerics, 2.6.0"
#:package MathNet.Numerics@2.6.0
#addin nuget:?package=MathNet.Numerics&version=2.6.0
#tool nuget:?package=MathNet.Numerics&version=2.6.0
Math.NET Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Numerics is the result of merging dnAnalytics with Math.NET Iridium and is intended to replace both. Also includes a portable build supporting .Net 4 and higher, SL5, WP8 and .NET for Windows Store apps.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on MathNet.Numerics:
| Package | Downloads |
|---|---|
|
Bonsai.ML.Design
A package for the Bonsai visual programming language. |
|
|
Bonsai.Numerics
Bonsai Library providing methods and algorithms for common numerical computations. |
GitHub repositories (87)
Showing the top 20 popular GitHub repositories that depend on MathNet.Numerics:
| Repository | Stars |
|---|---|
|
QuantConnect/Lean
Lean Algorithmic Trading Engine by QuantConnect (Python, C#)
|
|
|
rocksdanister/lively
Free and open-source software that allows users to set animated desktop wallpapers and screensavers powered by WinUI 3.
|
|
|
StockSharp/StockSharp
Algorithmic trading and quantitative trading open source platform to develop trading robots (stock markets, forex, crypto, bitcoins, and options).
|
|
|
litedb-org/LiteDB
LiteDB - A .NET NoSQL Document Store in a single data file
|
|
|
MassTransit/MassTransit
Distributed Application Framework for .NET
|
|
|
akkadotnet/akka.net
Canonical actor model implementation for .NET with local + distributed actors in C# and F#.
|
|
|
mathnet/mathnet-numerics
Math.NET Numerics
|
|
|
betalgo/openai
.NET library for the OpenAI service API by Betalgo Ranul
|
|
|
sipsorcery-org/sipsorcery
A WebRTC, SIP and VoIP library for C# and .NET. Designed for real-time communications apps.
|
|
|
microsoft/WhatTheHack
A collection of challenge based hack-a-thons including student guide, coach guide, lecture presentations, sample/instructional code and templates. Please visit the What The Hack website at: https://aka.ms/wth
|
|
|
Maassoft/ColorControl
Easily change NVIDIA display settings and/or control LG TV's
|
|
|
Taiizor/Sucrose
Sucrose is a versatile wallpaper engine that brings life to your desktop with a wide range of interactive wallpapers.
|
|
|
microsoft/ai-dev-gallery
An open-source project for Windows developers to learn how to add AI with local models and APIs to Windows apps.
|
|
|
elevenyellow/handcrafted-persona-engine
An AI-powered interactive avatar engine using Live2D, LLM, ASR, TTS, and RVC. Ideal for VTubing, streaming, and virtual assistant applications.
|
|
|
CXWorld/CapFrameX
Frametime capture and analysis tool
|
|
|
Wouterdek/NodeNetwork
A C# library with a WPF node editor component based on ReactiveUI
|
|
|
hanabi1224/Programming-Language-Benchmarks
Yet another implementation of computer language benchmarks game
|
|
|
Azure/azure-cosmos-dotnet-v3
.NET SDK for Azure Cosmos DB for the core SQL API
|
|
|
microsoft/RoomAliveToolkit
|
|
|
PieroCastillo/Aura.UI
A Library with a lot of Controls for AvaloniaUI
|
| Version | Downloads | Last Updated |
|---|---|---|
| 3.9.0 | 3,885 | 11/25/2015 |
| 3.8.0 | 12,187 | 9/26/2015 |
| 3.7.1 | 2,615 | 9/21/2015 |
| 3.7.0 | 24,120 | 5/9/2015 |
| 3.6.0 | 8,062 | 3/22/2015 |
| 3.5.0 | 13,025 | 1/10/2015 |
| 3.4.0 | 1,148 | 1/4/2015 |
| 3.3.0 | 5,179 | 11/26/2014 |
| 3.3.0-beta2 | 245 | 10/25/2014 |
| 3.3.0-beta1 | 477 | 9/28/2014 |
| 3.2.3 | 15,182 | 9/6/2014 |
| 3.2.2 | 178 | 9/5/2014 |
| 3.2.1 | 2,963 | 8/5/2014 |
| 3.2.0 | 189 | 8/5/2014 |
| 3.1.0 | 3,730 | 7/20/2014 |
| 3.0.2 | 6,038 | 6/26/2014 |
| 3.0.1 | 347 | 6/24/2014 |
| 3.0.0 | 2,330 | 6/21/2014 |
| 3.0.0-beta05 | 131 | 6/20/2014 |
| 2.6.0 | 2,005 | 7/26/2013 |
### New: Linear Curve Fitting
- Linear least-squares fitting (regression) to lines, polynomials and linear combinations of arbitrary functions.
- Multi-dimensional fitting.
- Also works well in F# with the F# extensions.
### New: Root Finding
- Brent's method.
- Bisection method.
- Broyden's method, for multi-dimensional functions.
- Newton-Raphson method.
- Robust Newton-Raphson variant that tries to recover automatically in cases where it would fail or converge too slowly. This modification makes it more robust e.g. in the presence of singularities and less sensitive to the search range/interval.
- All algorithms support a TryFind-pattern which returns success instead of throwing an exception.
- Special case for quadratic functions, in the future to be extended e.g. to polynomials.
- Basic bracketing algorithm
- Also works well in F# with the F# extensions.
### Linear Algebra
- Native eigenvalue decomposition (EVD) support with our MKL packages
- Add missing scalar-vector operations (s-v, s/v, s%v)
- Support for new F# 3.1 row/column slicing syntax on matrices
- Matrices learned proper OfColumn/RowVectors, analog also in F#.
- Documentation Fixes
- BUG: Fixed exception text message when creating a matrix from enumerables (rows vs columns)
- We're phasing out MathNet.Numerics.IO that used to be included in the main package for matrix file I/O for text and Matlab formats. Use the new .Data.Text and .Data.Matlab packages instead.
### Statistics & Distributions
- Spearman Rank Correlation Coefficient
- Covariance function, in Array-, Streaming- and common Statistics.
- Categorical: distribution more consistent, no longer requires normalized pdf/cdf parameters
- Categorical: inverse CDF function
- BUG: Fixed static sampling methods of the `Stable` distribution.
### Misc
- BUG: Fixed a bug in the Gamma Regularized special function where in some cases with large values it returned 1 instead of 0 and vice versa.
- The F# extensions now have a strong name in (and only in) the signed package as well (previously had not been signed).
- Evaluate.Polynomial with new overload which is easier to use.
- Fixed a couple badly designed unit tests that failed on Mono.
- Repository now Vagrant-ready for easy testing against recent Mono on Debian.