How to find curve fitting coefficients

Hi Can you advise how I can generate curve fitting coefficients using a curve fitting relationship: E=A*(X-B)^C+D for known X and Y (E=lnY), so I am looking for A,B,C,D of relationship: Y=EXP(A*(X-B)^C+D) for known X,Y. Can I use Curve Fitting ToolBox ?

Answers (1)

x = lsqcurvefit(fun,x0,xdata,ydata) % in Optimization Toolbox
or
x = fminsearch(fun,x0) % in MATLAB
may help you to solve Y = EXP(A*(X-B)^C+D)
HTH

Categories

Products

Release

R2018a

Asked:

on 4 Jul 2018

Answered:

on 11 Jul 2018

Community Treasure Hunt

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

Start Hunting!