open MathNet.Numerics.LinearAlgebra
let m = matrix [[ 1.0; 2.0 ]
[ 3.0; 4.0 ]]
let n = matrix [[ 1.0; 2.0 ]
m.PointwiseMultiply(n) |> printfn "%A"