Math.
I have two vectors MathNet.Numerics.LinearAlgebra.Generic.Vector<double>, like the following: Vector<double> v1 = …
c# numeric math.net mathnet-numericsI achieved simple single regression using math.net regression method like this: var xdata = new double[] { 10, 20, 30, 40, 50 }; var ydata = new double[] { 15, 20, 25, 55, 95 }; …
c# linear-regression math.net mathnet-numerics