framework icon indicating copy to clipboard operation
framework copied to clipboard

Add an Example for LevenbergMarquardt Class

Open hilariohalili opened this issue 5 years ago • 0 comments

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()

hilariohalili avatar Sep 14 '20 13:09 hilariohalili