Filter löschen
Filter löschen

How to minimize residual error (i.e., cost function) using least squares?

5 Ansichten (letzte 30 Tage)
TJ
TJ am 27 Dez. 2019
Bearbeitet: TJ am 4 Jan. 2020
I have a data set, 'x' and 'xhat', where 'x' is the experimental data and 'xhat' is calculated. The cost functions are b1, b2 and b3 - these are the values that need to be minimized to reduce the residual error. M is previously calculated elsewhere in the script.
% x is the experimental data
T = 100 + b1
K = b2 + b3 * M^2
xhat = T + (T * K * M^2) % xhat is supposed to be calculated
res=x-xhat % residual error
min(b1,b2,b3)= sum(||res||).^2 % Least squares - Levenberg-Marquardt Algorithm
Having never worked with cftool before, can someone assist me in finding the values of the cost function?
Thanks in advance!

Antworten (1)

Shubh Sahu
Shubh Sahu am 31 Dez. 2019
Load your dataset in workspace and then open cftool. Select data to fit in curve. Select the model type 'custom' and input the whole equation which you want to minimize. Please refer to these links for further help :
  1 Kommentar
TJ
TJ am 4 Jan. 2020
Bearbeitet: TJ am 4 Jan. 2020
Shubh,
Thank you for the links. I was only able to implement a two variable custom equation - in my case, x = the equation behind
x = the equation behind '100' in T = 100 + b1
y = the value of M
However, I believe I'll need a three independent variable custom equation to calculate the residuals. How do I implement a three independent variable custom equation?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Get Started with Curve Fitting Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by