Skip to content

mdruiter/mathnet-numerics

This branch is 426 commits behind mathnet/mathnet-numerics:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

990fa46 · Oct 13, 2019
Oct 13, 2019
Jun 11, 2019
Aug 3, 2018
Sep 2, 2018
Feb 19, 2018
Oct 13, 2019
Oct 15, 2016
Jan 15, 2017
May 10, 2015
Oct 13, 2019
Aug 9, 2015
Jun 1, 2019
Dec 28, 2016
Oct 19, 2018
Jun 2, 2019
Jun 24, 2018
May 30, 2019
May 30, 2019
Mar 24, 2019
May 30, 2019
May 30, 2019
May 30, 2019
Mar 24, 2019
Apr 25, 2011
May 30, 2019
May 3, 2015
Feb 14, 2018
Feb 14, 2018
Sep 26, 2015
Oct 13, 2019
May 19, 2014
Jun 1, 2019
May 30, 2019
Jan 24, 2018
Jun 11, 2019
Jan 24, 2018
Apr 28, 2019
Apr 28, 2019
May 30, 2019
Feb 25, 2018
Jan 24, 2018
Jan 24, 2018
Jan 3, 2015

Repository files navigation

Math.NET Numerics

Math.NET Numerics is an opensource numerical library for .Net, Silverlight and Mono.

Math.NET Numerics is the numerical foundation of the Math.NET initiative, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Covered topics include special functions, linear algebra, probability models, random numbers, statistics, interpolation, integration, regression, curve fitting, integral transforms (FFT) and more.

In addition to the core .NET package (which is written entirely in C#), Numerics specifically supports F# with idiomatic extension modules and maintains mathematical data structures like BigRational that originated in the F# PowerPack. If a performance boost is needed, the managed-code provider backing its linear algebra routines and decompositions can be exchanged with wrappers for optimized native implementations such as Intel MKL.

Math.NET Numerics is covered under the terms of the MIT/X11 license. You may therefore link to it and use it in both opensource and proprietary software projects. We accept contributions!

Current Version

Math.NET Numerics Version Math.NET Numerics
MKL Native Provider Version MKL Native Provider
OpenBLAS Native Provider Version OpenBLAS Native Provider
Data Extensions Version Data Extensions

Installation Instructions

The recommended way to get Math.NET Numerics is to use NuGet. The following packages are provided and maintained in the public NuGet Gallery.

Core Package:

  • MathNet.Numerics
  • MathNet.Numerics.FSharp - optional extensions for a better F# experience. BigRational.

Alternative Provider Packages (optional):

  • MathNet.Numerics.MKL.Win - Native Intel MKL Linear Algebra provider (Windows).
  • MathNet.Numerics.MKL.Win-x86 - Native Intel MKL Linear Algebra provider (Windows/32-bit only).
  • MathNet.Numerics.MKL.Win-x64 - Native Intel MKL Linear Algebra provider (Windows/64-bit only).

Data/IO Packages for reading and writing data (optional):

  • MathNet.Numerics.Data.Text - Text-based matrix formats like CSV and MatrixMarket.
  • MathNet.Numerics.Data.Matlab - MATLAB Level-5 matrix file format.

Platform Support and Dependencies

Supported Platforms:

  • .Net Framework 4.0 or higher and Mono (Package includes builds for 4.0 and 4.6.1)
  • .Net Standard 1.3 or higher (Package includes builds for 1.3 and 2.0)

Supported Platforms for the F# extensions:

  • .Net Framework 4.5 or higher (Package includes builds for 4.5)
  • .Net Standard 1.6 or higher (Package includes builds for 1.6 and 2.0)

For full details, dependencies and platform discrepancies see Platform Compatibility.

Building Math.NET Numerics

Windows (.Net): AppVeyor build status Build Status
Linux (Mono): Travis Build Status

You can build Math.NET Numerics with an IDE like VisualStudio or JetBrains Rider, with MsBuild, .Net CLI tools or with FAKE (recommended).

FAKE:

./build.sh build (or build.cmd)
./build.sh test

.Net CLI:

./restore.sh (or restore.cmd)
dotnet build MathNet.Numerics.sln

MsBuild/XBuild:

./restore.sh (or restore.cmd)
msbuild MathNet.Numerics.sln

See Build & Tools for full details on how to build, generate documentation or even create a full release.

Packages

No packages published

Languages

  • C# 97.3%
  • F# 1.9%
  • C++ 0.7%
  • C 0.1%
  • Shell 0.0%
  • CSS 0.0%