473,398 Members | 2,427 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Quadratic curve fitting!

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


Jul 19 '05 #1
5 12555
"Vinodh Kumar" <th*************@yahoo.com> wrote in message
news:bh**********@news.mch.sbs.de...
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

Jul 19 '05 #2
"Vinodh Kumar" <th*************@yahoo.com> wrote in message
news:bh**********@news.mch.sbs.de...
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

--
Peter van Merkerk
peter.van.merkerk(at)dse.nl

Jul 19 '05 #3
Vinodh Kumar wrote:

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/47...ea/node35.html

--
Marc Durufle
Inria Rocquencourt
Tel : 01 39 63 56 27
--------------------------
Jul 19 '05 #4
"Vinodh Kumar" <th*************@yahoo.com> wrote in message
news:bh**********@news.mch.sbs.de...
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
Jul 19 '05 #5

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...
--
Marc Durufle
Inria Rocquencourt
Tel : 01 39 63 56 27
--------------------------
Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Tom Anderson | last post by:
Hi, I'd like to fit a curve (a rectangular hyperbola, in fact) to some data points as part of a program i'm writing. Can anyone suggest a package which would help me do this? A bit of...
6
by: fb | last post by:
Hello everyone. I'm having a touch of trouble solving a problem using the quadratic formula. I get a domain error...Somewhere in the sqrt function I think. Could you guys give me a hint on...
0
by: James Dean | last post by:
This may not be related to this newsgroup but i thought i would ask anyway. I am doing a project in C#. I would like to know of any good sites or information about Line and curve fitting. I would...
3
by: amitsoni.1984 | last post by:
Hi, I need to do a quadratic optimization problem in python where the constraints are quadratic and objective function is linear. What are the possible choices to do this. Thanks Amit
6
by: Trev17 | last post by:
Hello, I am new to C++ and i have tried for several hours to make a program my teacher has given me as a lab. Here is the Lab question: the roots of the quadratic equation ax^2 + bx + c = 0, a...
2
by: DaRok28 | last post by:
// Program Description: // This program solves quadratic equations to find their roots. This // program takes values of a, b, and c as input and outputs the root(s). // The user can repeat the...
4
by: Iain Mackay | last post by:
Python Folks I'm a newbie to Python and am looking for a library / function that can help me fit a 1D data vector to a sine wave. I know the frequency of the wave, so its really only phase and...
1
by: bbench123 | last post by:
Make a program that will ask for values of a quadratic equation (ax2+bx+c). the program must determine the roots of the equation using the quadratic equation determinants to distinguish if the roots...
0
by: sa6113 | last post by:
Hello there, I have a problem on curve fitting , would you please help me ?! I want to to develop a application that reads a text file with 2 columns of floating point data (as x and y) and...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.