Quadratic curve fitting!

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Vinodh Kumar

    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.Thank s.

    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




  • David White

    #2
    Re: Quadratic curve fitting!

    "Vinodh Kumar" <thecomdevelope r@yahoo.com> wrote in message
    news:bh7vnv$l4p $1@news.mch.sbs .de...[color=blue]
    > Number One:
    > =========
    > I know its a 100% offline post.[/color]

    So, you don't even have an excuse.
    [color=blue]
    > 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[/color]
    guide[color=blue]
    > me to the proper newsgroup.Thank s.[/color]

    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?
    [color=blue]
    > 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.[/color]

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

    DW



    Comment

    • Peter van Merkerk

      #3
      Re: Quadratic curve fitting!

      "Vinodh Kumar" <thecomdevelope r@yahoo.com> wrote in message
      news:bh7vnv$l4p $1@news.mch.sbs .de...[color=blue]
      > Number One:
      > =========
      > I know its a 100% offline post.But seeing the diversity of the domain[/color]
      from[color=blue]
      > which people are participating,
      > I would like to post this question here.Pardon me.At the least, u can[/color]
      guide[color=blue]
      > me to the proper newsgroup.Thank s.
      >
      > 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.[/color]

      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.a lgorithms

      --
      Peter van Merkerk
      peter.van.merke rk(at)dse.nl



      Comment

      • Marc Durufle

        #4
        Re: Quadratic curve fitting!

        Vinodh Kumar wrote:[color=blue]
        >
        > 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.Thank s.
        >
        > 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[/color]


        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





        --
        Marc Durufle
        Inria Rocquencourt
        Tel : 01 39 63 56 27
        --------------------------

        Comment

        • Samuele Armondi

          #5
          Re: Quadratic curve fitting!

          "Vinodh Kumar" <thecomdevelope r@yahoo.com> wrote in message
          news:bh7vnv$l4p $1@news.mch.sbs .de...[color=blue]
          > 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[/color]
          guide[color=blue]
          > me to the proper newsgroup.Thank s.
          >
          > 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
          >[/color]
          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


          Comment

          • Marc Durufle

            #6
            Re: Quadratic curve fitting!

            [color=blue][color=green]
            > >[/color]
            > 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[/color]

            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
            --------------------------

            Comment

            Working...