You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
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!