<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: General Polynomial Fit in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101391#M61908</link>
    <description>Make a loop fitting several orders to your data (1 to 4 or so), analyse the error of the polynomial fit, and choose the version with the least error. The Polynomial fit VI has an output labelled mse (second from bottom on the right hand side).  This is the mean squared error of the polynomial fit.&lt;BR /&gt;&lt;BR /&gt;Any other method requires assumptions about your data form and shape.&lt;BR /&gt;&lt;BR /&gt;Shane. &lt;BR /&gt;</description>
    <pubDate>Mon, 22 Sep 2003 07:08:24 GMT</pubDate>
    <dc:creator>shoneill</dc:creator>
    <dc:date>2003-09-22T07:08:24Z</dc:date>
    <item>
      <title>General Polynomial Fit</title>
      <link>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101390#M61907</link>
      <description>I need to fit a polynomial function and extract the coefficients a0, a1, etc, of my data. But in the General Polynomial Fit i have to especified the order, is there any way to find automatically the polynomial order and then extract the coefficients? Thank you. &lt;BR /&gt;</description>
      <pubDate>Sun, 21 Sep 2003 23:07:38 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101390#M61907</guid>
      <dc:creator>msbalen</dc:creator>
      <dc:date>2003-09-21T23:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: General Polynomial Fit</title>
      <link>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101391#M61908</link>
      <description>Make a loop fitting several orders to your data (1 to 4 or so), analyse the error of the polynomial fit, and choose the version with the least error. The Polynomial fit VI has an output labelled mse (second from bottom on the right hand side).  This is the mean squared error of the polynomial fit.&lt;BR /&gt;&lt;BR /&gt;Any other method requires assumptions about your data form and shape.&lt;BR /&gt;&lt;BR /&gt;Shane. &lt;BR /&gt;</description>
      <pubDate>Mon, 22 Sep 2003 07:08:24 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101391#M61908</guid>
      <dc:creator>shoneill</dc:creator>
      <dc:date>2003-09-22T07:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: General Polynomial Fit</title>
      <link>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101392#M61909</link>
      <description>I would caution that with this method you might find that a really high order poly is likley to fit the data better.  You should take into consideration how complex your data is (ie how many dimensions of x should model it). &lt;BR /&gt;</description>
      <pubDate>Mon, 22 Sep 2003 15:46:01 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101392#M61909</guid>
      <dc:creator>Jeremy Braden</dc:creator>
      <dc:date>2003-09-22T15:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: General Polynomial Fit</title>
      <link>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101393#M61910</link>
      <description>Yes,  I agree with you.&lt;BR /&gt;for polynomial fit to work properly, the number of data points should be way (at least some order) above the number of parameters (coeffients) estimated. &lt;BR /&gt;</description>
      <pubDate>Mon, 22 Sep 2003 21:48:09 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101393#M61910</guid>
      <dc:creator>Dr._Imad</dc:creator>
      <dc:date>2003-09-22T21:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: General Polynomial Fit</title>
      <link>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101394#M61911</link>
      <description>Like I said, any other approach requires assumptions about data form and shape.  I once did a system to interface to a spectrometer receiving signals from an SPR sensor, fitting the resulting curve and getting sub-pixel resolution.  I found that a 30th order polynomial (householder) fitted the data most satisfactorily (I tested 3 to 50).  In many fit algorithms, increased order of polynomials do not always result in a better fit, sometimes they can be drastically worse.&lt;BR /&gt;&lt;BR /&gt;Shane. &lt;BR /&gt;</description>
      <pubDate>Tue, 23 Sep 2003 10:46:28 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101394#M61911</guid>
      <dc:creator>shoneill</dc:creator>
      <dc:date>2003-09-23T10:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: General Polynomial Fit</title>
      <link>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101395#M61912</link>
      <description>Thinking about this question again, I`m not sure I`ve answered the correct question at all.&lt;BR /&gt;&lt;BR /&gt;My original method (Scanning different fit orders) will give aou an N-order Polynomial which fits the signal well, but the assumption that your signal is then also an N-order Polynomial is generally false.  If you are simply looking for a polynomial which well describes your signal, this is OK.&lt;BR /&gt;&lt;BR /&gt;If you are dealing with simple clean signals then you MIGHT be able to make assumptions on the signal type based on various fit coefficients, but if you`re trying to understand fundamentals of a real-world complex signal based on fit-algorithm errors, I would be, in addition to the other respondants, very cautious.  I`m not a very good mathmatecian (I love that the fit algorith&lt;BR /&gt;ms simply &lt;WORK&gt;), so I can`t begin to give a hint as to do this kind of analysis.&lt;BR /&gt;&lt;BR /&gt;Shane. &lt;BR /&gt;&lt;/WORK&gt;</description>
      <pubDate>Tue, 23 Sep 2003 13:18:22 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/General-Polynomial-Fit/m-p/101395#M61912</guid>
      <dc:creator>shoneill</dc:creator>
      <dc:date>2003-09-23T13:18:22Z</dc:date>
    </item>
  </channel>
</rss>

