I'm trying to learn F#, and to create a matrix I follow the instructions from here: http://numerics.mathdotnet.com/
module Gew.M
open MathNet.Numerics
open MathNet.Numerics.LinearAlgebra
let matrix1 = matrix [[1.0; 2.0]; [1.0; 3.0]]
let matrix2 = matrix [[1.0; -2.0]; [0.5; 3.0]]
let matrix12 = matrix1 * matrix2
Then I get this error: the value or constructor matrix is not defined