Skip to content
This repository was archived by the owner on May 21, 2018. It is now read-only.

Latest commit

 

History

History
8 lines (6 loc) · 657 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 657 Bytes

Native Providers for Math.NET Numerics

To use the native library:

  1. Place the native libraries (i.e. MathNET.Numerics.MKL.dll and libiomp5md.dll) in the same directory as your application's executable.*
  2. In your application code, set the value of Control.LinearAlgebraProvider to the native provider you are using. For example: Control.LinearAlgebraProvider = new MathNet.Numerics.Algorithms.LinearAlgebra.Mkl.MklLinearAlgebraProvider();
  • The native library can also be placed in your current PATH or in the system PATH. However, it is much easier to just to place it in the same directory as the executable.