So I am trying to use math.net in vb.net. I have copied the c# excerpt from the website and tried to convert it to vb.net. I have gotten to this point:
Dim m = Matrix(Of Double).Build.DenseOfArray({{1.0, 4.0}, {2.0, 5.0}, {3.0, 2.0}})
Dim y = Vector(Of Double).Build.DenseOfArray({15, 20, 10})
Dim p = MultipleRegression.NormalEquations(m, y, True)
Dim a = p(0)
Dim b = p(1)
Dim c = p(2)
it is not liking the multipleregression line and I do not know why.
Any help would be appreciated