This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Description
I'm unsure how to port the second parameter of the Nonlinearregression Class into VB.Net from the example in the documentation. The parameter is
function: (w, x) => w[0] * x[0] * x[0] + w[1] * x[0] + w[2],
Would this (in VB.NET) be
[function]:= w[0] * x[0] * x[0] + w[1] * x[0] + w[2], ?
If so, what does the gradient constraint function look like?
A VB.NET version of that example would be fantastic!