framework
framework copied to clipboard
Add an Example for LevenbergMarquardt Class
Please add an example for LevenbergMarquardt Class.
In the current example, this is how inputs and outputs get their values.
' Extract inputs And outputs Dim inputs As Double()() = data.GetColumn(0).ToJagged() Dim outputs As Double() = data.GetColumn(1)
Can you provide an example how to assign values to inputs if there are more than 2 independent variables?
for example (x, y, z) .... (1, 1.5 , 2).
For outputs I can do Dim outputs as Double() = data.GetColumn(2) For inputs, how can I assign the first 2 columns containing 1 and 1.5 .... data.GetColumn(???).ToJagged()