How to apply custom equation on a curve and find unknown parameter

I've a curve and I've to apply following custom equation and have to find the unknown parameters A and B
y=3.379-(A*X^2/(B+X))
please guide me how can I do this operation.

답변 (2개)

Andreas Goser
Andreas Goser 2011년 3월 8일

1 개 추천

When you write "I have a curve", I assume you have data. Make sure the data X and y is in your MATLAB workspace.
Start CFTOOL
Import the data (DATA button)
Use the FITTING button and choose customer equiation as TYPE OF FIT

댓글 수: 2

If you have the Curve Fitting Toolbox.
True. Here an overview over multiple options with MATLAB: <http://www.mathworks.com/support/tech-notes/1500/1508.html>
But I'd say CFTOOL is the absolute easiest way for a new user to do fitting.

댓글을 달려면 로그인하십시오.

Matt Tearle
Matt Tearle 2011년 3월 8일
If you have Statistics Toolbox, use nlinfit.
f = @(b,x) 3.379 - (b(1)*x.^2./(b(2)+x))
bfit = nlinfit(xdata,ydata,f,b0)
where xdata and ydata are your data values to fit to, and b0 is an initial guess for the parameters

댓글 수: 2

What does b0 look like?
In this b0 would be a vector of length 2 of numeric values, which will serve as initial guess for the search.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Interpolation에 대해 자세히 알아보기

태그

질문:

2011년 3월 8일

댓글:

2019년 7월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by