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
Why is the vector length (Pstep.L2Norm()) compared to the square of the vector length (P.DotProduct(P))? Looks like a bug. Of course, if the parameters were scaled correctly (|Pi|~1) this does not cause a problem. But in general, this is not correct. Wouldn't it be more correct to compare Pstep.L2Norm() to P.L2Norm(), or their squares?
The text was updated successfully, but these errors were encountered:
mathnet-numerics/src/Numerics/Optimization/LevenbergMarquardtMinimizer.cs
Line 161 in f196418
Why is the vector length (
Pstep.L2Norm()
) compared to the square of the vector length (P.DotProduct(P)
)? Looks like a bug. Of course, if the parameters were scaled correctly (|Pi|~1
) this does not cause a problem. But in general, this is not correct. Wouldn't it be more correct to comparePstep.L2Norm()
toP.L2Norm()
, or their squares?The text was updated successfully, but these errors were encountered: