Hi all,
I'm attempting to run this sample code copied from http://numerics.mathdotnet.com/docs/ in the VS interactive window. The code returns the following error:
I'm attempting to run this sample code copied from http://numerics.mathdotnet.com/docs/ in the VS interactive window. The code returns the following error:
The type referenced through 'MathNet.Numerics.LinearAlgebra.Matrix`1' is defined in an assembly that is not referenced. You must add a reference to assembly 'MathNet.Numerics'.Any thoughts on what is going wrong? The dlls were acquired through nuget. They are version 3.0.2.
#r @"C:\path_to_dlls\MathNet.Numerics.dll"
#r @"C:\path_to_dlls\Mathnet.Numerics.FSharp.dll"
open MathNet.Numerics
open MathNet.Numerics.LinearAlgebra
open MathNet.Numerics.LinearAlgebra.Double
SpecialFunctions.Gamma(0.5)
let m : Matrix<float> = DenseMatrix.randomStandard 50 50
(m * m.Transpose()).Determinant()