Filter löschen
Filter löschen

Please help on curve fitting

1 Ansicht (letzte 30 Tage)
Anwar
Anwar am 29 Nov. 2018
Beantwortet: John D'Errico am 29 Nov. 2018
I need to fit my data sets to an equation Y = A + Bx^2 + C D^4. With my limited knowledge, I have tried p=polyfit(x,y,4); which returned with values for coefficients of x and x^3 terms. Would really apprecite any help.
Thank you

Akzeptierte Antwort

John D'Errico
John D'Errico am 29 Nov. 2018
Assuming that you mean a model of the form
Y = A + Bx^2 + C x^4
Simple is to download my polyfitn from the file exchange, which can allow you to specify a specific model.
As easy for this very specific case is to use polyfit, on the transformed quadratic model:
Y = A + Bu + C u^2
where you define u as x^2. Get that from:
p=polyfit(x.^2,y,2);

Weitere Antworten (0)

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