Momenteel plot ik mijn gegevens in excel, maak een 3e order polynome trendlijn en copy/paste dan de coefficienten in excel, omdat ik met die coefficienten verder wil rekenen. Dit kost nogal veel tijd. Ik vroeg me daarom af of iemand een mooie oplossing hiervoor heeft gevonden.
Met LINEST() schijnt het te kunnen: http://zimmer.csufresno.e...al/LINEST/LINESTfull.html (kijk naar de tekst bij het tweede screenshot)
Verder vond ik nog de volgende site: http://www.j-walk.com/ss/excel/tips/tip101.htm
Met LINEST() schijnt het te kunnen: http://zimmer.csufresno.e...al/LINEST/LINESTfull.html (kijk naar de tekst bij het tweede screenshot)
Maar hierbij moet je je x-waardes in 3 kolommen zetten (x, x^2 en x^3), waar ik ook niet blij van word, omdat mijn spreadsheets al vol genoeg staan.Concentration goes in column A, the square of concentration goes in column B, and the resulting Absorbance in Column C. Then select the array B41:D45 and enter the equation =LINEST(C34:C38,A34:B38,TRUE,TRUE) and use Command+Enter (Mac) or Control+Shift+Enter (PC). The polynomial coefficients are found in row 41, with related statistics below.
Verder vond ik nog de volgende site: http://www.j-walk.com/ss/excel/tips/tip101.htm
Deze methode heeft als voordeel dat je door INDEX te gebruiken geen arrayformules hoeft te gebruiken, en je hebt geen extra kolommen nodig voor x-waardes omdat je in de formule zelf de x-waardes tot 2 en 3 verheft (door =INDEX(LINEST(y,x^{1,2,3}),1). Helaas krijg ik deze formule niet werkend.3rd Order Polynomial Trendline
Equation: y = (c3 * x^3) + (c2 * x^2) + (c1 * x^1) + b
c3: =INDEX(LINEST(y,x^{1,2,3}),1)
When a man finds a conclusion agreeable, he accepts it without argument, but when he finds it disagreeable, he will bring against it all the forces of logic and reason