Quadratic curve fitting!

V

Vinodh Kumar

Number One:
=========
I know its a 100% offline post.But seeing the diversity of the domain from
which people are participating,
I would like to post this question here.Pardon me.At the least, u can guide
me to the proper newsgroup.Thanks.

Number Two:
=========
I want to draw a curve for a set of observations(i.e, x,y pairs) using
Quadratic fit using Least Square method.
I do not what is the step1, step2, step 3 i mean alogorithm for this
process.Any helps will be gratefully appreciated.

Regards,
Vinodh Kumar P
 
D

David White

Vinodh Kumar said:
Number One:
=========
I know its a 100% offline post.

So, you don't even have an excuse.
But seeing the diversity of the domain from
which people are participating,
I would like to post this question here.Pardon me.At the least, u can guide
me to the proper newsgroup.Thanks.

I wouldn't have a clue. Did you try looking for a group with 'algorithm',
'math' or related term, or did you just decide to ask a completely off-topic
question as your first step?
Number Two:
=========
I want to draw a curve for a set of observations(i.e, x,y pairs) using
Quadratic fit using Least Square method.
I do not what is the step1, step2, step 3 i mean alogorithm for this
process.Any helps will be gratefully appreciated.

Completely off-topic, which you already know. So why bother asking?

DW
 
P

Peter van Merkerk

Vinodh Kumar said:
Number One:
=========
I know its a 100% offline post.But seeing the diversity of the domain from
which people are participating,
I would like to post this question here.Pardon me.At the least, u can guide
me to the proper newsgroup.Thanks.

Number Two:
=========
I want to draw a curve for a set of observations(i.e, x,y pairs) using
Quadratic fit using Least Square method.
I do not what is the step1, step2, step 3 i mean alogorithm for this
process.Any helps will be gratefully appreciated.

You are most likely to get a good and peer reviewed answers if you post
the question to a newsgroup where your question is topical. In this case
that would be comp.graphics.algorithms
 
M

Marc Durufle

Vinodh said:
Number One:
=========
I know its a 100% offline post.But seeing the diversity of the domain from
which people are participating,
I would like to post this question here.Pardon me.At the least, u can guide
me to the proper newsgroup.Thanks.

Number Two:
=========
I want to draw a curve for a set of observations(i.e, x,y pairs) using
Quadratic fit using Least Square method.
I do not what is the step1, step2, step 3 i mean alogorithm for this
process.Any helps will be gratefully appreciated.

Regards,
Vinodh Kumar P


Well, i don't know what are your real aims. We use least square method
to fit with a model curve.
By example, you can by this method find the straight line who is the
nearest from a set of points.
It is very used in physics when you want to find numerically the
parameters of a linear law. You
can also use least square method to find the nearest parabole, cubic
... curve, which is the nearest from your points.
You compute by this way the coefficients a,b,c so that y=a x² + b x +c
is the nearest
parabol from your points.
Then you have to minimize the functionnal J = Sum_i( (y_i - a*x_i²+
b*x_i +c)^2) where (x_i,y_i) is the set of points

If your aim is to smooth a set of edges, you can use smooth techniques
like splines. Especially cubic splines are very nice.
You ensure by using cubic splines that your curve will pass by your sets
of points, and the curve is smooth. I joined a documentation
about splines

http://kr.cs.ait.ac.th/~radok/math/mat7/step28.htm

http://math.arizona.edu/~restrepo/475A/Notes/sourcea/node35.html
 
S

Samuele Armondi

Vinodh Kumar said:
Number One:
=========
I know its a 100% offline post.But seeing the diversity of the domain from
which people are participating,
I would like to post this question here.Pardon me.At the least, u can guide
me to the proper newsgroup.Thanks.

Number Two:
=========
I want to draw a curve for a set of observations(i.e, x,y pairs) using
Quadratic fit using Least Square method.
I do not what is the step1, step2, step 3 i mean alogorithm for this
process.Any helps will be gratefully appreciated.

Regards,
Vinodh Kumar P
It is very OT in here... but I would suggest using Newton's interpolation
formula to work out the polynomial. Look Newton interpolation formula up in
google and it should give you enough information. If you need anymore help,
email me and I will do my best.
HTH,
S. Armondi
 
M

Marc Durufle

It is very OT in here... but I would suggest using Newton's interpolation
formula to work out the polynomial. Look Newton interpolation formula up in
google and it should give you enough information. If you need anymore help,
email me and I will do my best.
HTH,
S. Armondi

I hope you won't have lots of points because classical Lagrangian
interpolation (we call also Newton) gives a poor approximation
when the degree of polynoms increase. You get oscillations and it is why
we prefer to use cubic splines :) You can also use lagrangian
polynomials on subsets of 3 or 4 points, but you will have
discontinuities in your curve. Anyway, it works...
 
Joined
Dec 1, 2010
Messages
1
Reaction score
0
I have the same problem and google directed me here. I think that interpolation is not a solution.

Interpolation fits the curve to go through all samples
LMS quadratic fitting, finds a 2nd degree function such thatthere is a minimal error between samples and curve. (function do not pass through samples)

All in all - my post is usless because it gives no answer :/

Try google code search. I have just found:
[www] dot google.com/codesearch/p?hl=pl#R_csOllczbk/ccstruct/lmedsq.cpp&q=quadratic%20fit%20lms&sa=N&cd=1&ct=rc
(sory, i can not post links)

In line 112 there is a LMS line fit function. I am just about to analize it
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top