Quick Start
With VisualStudio 2010, NuGet and F#

Ensure you have NuGet Packet Manager installed in VisualStudio. If you don't have it yet, you can get it using the Extension Manager in the Tools menu.

Create a new F# project (or open an existing F# project you'd like to extend)
Click Menu Project > Add Library Package Reference
Choose online package sources on the left, then search for Math.NET, and install the MathNet.Numerics.FSharp package.

Enjoy:
open MathNet.Numerics.FSharp open MathNet.Numerics.LinearAlgebra // Create a new 100 dimensional dense vector. let v = Double.DenseVector.init 100 (fun i -> float i / 100.0) // Another way to create a 100 dimensional vector is using the vector function. let w = vector (List.init 100 (fun i -> float i ** 2.0)) // We can now add two vectors together ... let z = v + w



