From aded679d0db2f727c754afccacc3f7b12778759d Mon Sep 17 00:00:00 2001 From: Neil Gatenby <13014710+NeilGatenby@users.noreply.github.com> Date: Thu, 20 Dec 2018 10:38:06 +0000 Subject: [PATCH] Update T_Accord_Math_Optimization_LevenbergMarquardt.htm Following recent pull request fixing the C# Gradient function herein, another one for the (different!) VB Gradient function --- .../T_Accord_Math_Optimization_LevenbergMarquardt.htm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/html/T_Accord_Math_Optimization_LevenbergMarquardt.htm b/docs/html/T_Accord_Math_Optimization_LevenbergMarquardt.htm index cb1676497f..f1598063e2 100644 --- a/docs/html/T_Accord_Math_Optimization_LevenbergMarquardt.htm +++ b/docs/html/T_Accord_Math_Optimization_LevenbergMarquardt.htm @@ -236,9 +236,9 @@

LevenbergMarquardt Class

' Derivative in respect to the weights .Gradient = Sub(w, x, r) - r(0) = 2 * w(0) ' w.r.t a: 2a - r(1) = w(1) ' w.r.t b: b - r(2) = w(2) ' w.r.t c: 0 + r(0) = x(0) * x(0) ' w.r.t a: x² + r(1) = x(0) ' w.r.t b: x + r(2) = 1 ' w.r.t c: 1 End Sub End With @@ -315,4 +315,4 @@

LevenbergMarquardt Class

HT_mailLink.innerHTML = HT_mailLinkText; - \ No newline at end of file +