how to find the equation that best fit this curve

조회 수: 12 (최근 30일)
Danilo NASCIMENTO
Danilo NASCIMENTO 2014년 8월 24일
댓글: John D'Errico 2014년 8월 24일
Hello guys
I want to find a equation that best fit this curve I'm sending attached. I tried a polynomial approximation but it does
not work
  댓글 수: 1
Star Strider
Star Strider 2014년 8월 24일
What process produced these data? How best can you describe that process?

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

채택된 답변

per isakson
per isakson 2014년 8월 24일
편집: per isakson 2014년 8월 24일
See SLM
Description: If you could only download one curve fitting tool to your laptop on a desert island, this should be it. [...] &nbsp SLM - Shape Language Modeling by John D'Errico
  댓글 수: 1
John D'Errico
John D'Errico 2014년 8월 24일
편집: John D'Errico 2014년 8월 24일
:)
Ok, I'd also make sure I had a spare battery for my laptop. Do they sell solar powered laptops now?

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

추가 답변 (3개)

Roger Stafford
Roger Stafford 2014년 8월 24일
편집: Roger Stafford 2014년 8월 24일
The right side of this curve looks as though it is asymptotically approaching a descending straight line. The left side doesn't look as if is approaching infinity, but more like y = 38 (or thereabouts) at x = 0 with an infinite derivative at x = 0. It looks very much like one branch of a hyperbola. Try adjusting constants A and B to make the hyperbola
y = 38 - sqrt(A*x+B*x^2)
fit the curve. (Just a guess.)
  댓글 수: 2
Star Strider
Star Strider 2014년 8월 24일
My guess was:
f = @(b,x) (b(1).*x + b(2)) + exp(b(3).*x);
Never got data to fit it, though.
John D'Errico
John D'Errico 2014년 8월 24일
Star - that one has the wrong behavior at x == 0. It won't fit well.

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


John D'Errico
John D'Errico 2014년 8월 24일
편집: John D'Errico 2014년 8월 24일
There is an obvious singularity at x == 0. This suggests that a polynomial model will be useless, or at best poor. Polynomials do not have singularities, so you would need a high order polynomial. (When you try to fit a polynomial to a function with a singularity, it will do strange things. You will need to use a high order, and that in turn will be a problem.)
Likewise, my own SLM will have problems. Again, splines don't like singularities.
However, IF you swap the x and y axes, you will be able to gain a very nice fit, using a variety of tools. Essentially you will build a model of the form
x = f(y)
This model will have no singularities. A spline model (like SLM) will be trivial to fit. Polynomials will also work well enough in this inverse form since there will be no singularity.
To evaluate the model now is slightly harder, but still easy enough. For a polynomial mode, f(y), any given x to find y, use roots or fzero. Thus you would find the roots of the polynomial in y
f(y) - x == 0
If f(y) was built using SLM, then use SLMEVAL, which can invert a spline model.
If you insist on trying to fit a model of the form
y = f(x)
then you will need terms in the model that have a singularity in them. So a logical starting model might have terms like this:
y = a0 + a1/x + a2/x^2 + a2*x + ...
so a polynomial with some terms with negative exponents. My own polyfitn (also found on the file exchange) would work. Regardless, that model may be difficult to fit well using least squares because of the singularity.

Image Analyst
Image Analyst 2014년 8월 24일
The Taylor series says that it will work if you include enough terms. The Taylor series can fit any continuous curve given enough terms, just like the Fourier series (which uses sines and cosines instead of polynomials). So you can use polyfit().

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by