A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Charts and Charting
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

how can i obtain polynomial constants when using trendlines.



 
 
Thread Tools Display Modes
  #1  
Old March 6th, 2006, 05:09 PM posted to microsoft.public.excel.charting
external usenet poster
 
Posts: n/a
Default how can i obtain polynomial constants when using trendlines.

how can i obtain polynomial constants when using trendlines. i sometimes
need to used these constants in other calculations but must manually enter
them in another context.
  #2  
Old March 6th, 2006, 05:30 PM posted to microsoft.public.excel.charting
external usenet poster
 
Posts: n/a
Default how can i obtain polynomial constants when using trendlines.

Hi,

Let's suppose that the x- and y- ranges are in A2:A51 and B2:B51
respectively, and you are fitting a 6-order polynomial to your data. Select
a 7 column x 1 row area, enter the following formula, and confirm
with CTRL-SHIFT-ENTER.

=LINEST(B2:B51,A2:A51^{0,1,2,3,4,5,6},0,)

The formula will return the 7 coefficients, starting from the zeroth order
and ending with the 6th order.

If you want to have the coefficients shown starting from the 6th order and
ending in the zeroth order, modify the formula as,

=LINEST(B2:B51,A2:A51^{6,5,4,3,2,1,0},0,)

In general, for a polynomial fit of order n (where n=2 to 6), select a (n+1)
column x 1 row area, and use one of the following formulas:

=LINEST(B2:B51,A2:A51^{0,1,2,....,n},0,)
=LINEST(B2:B51,A2:A51^{n,n-1,....,1,0},0,)

Regards,
B. R. Ramachandran


"senrats" wrote:

how can i obtain polynomial constants when using trendlines. i sometimes
need to used these constants in other calculations but must manually enter
them in another context.

  #3  
Old March 6th, 2006, 07:28 PM posted to microsoft.public.excel.charting
external usenet poster
 
Posts: n/a
Default how can i obtain polynomial constants when using trendlines.

It would be wise to compare the values returned by LINEST to the chart
trendline coefficients (assuming that the chart is an "X-Y (Scatter)" chart
and not a "Line" chart).

Prior to Excel 2003, LINEST used a mathematically correct but numerically
poor algorithm that could result in serious cancellation issues with higher
order polynomials. Excel 2003 fixed that problem, but introduced a new one;
so that in 2003, LINEST coefficients that are exactly zero are not to be
trusted without independent confirmation.

Alternately, Tushar Mehta has enhanced VBA code by David Braden to extract
coefficients from the chart trendline.
http://groups.google.com/group/micro...da30f29434786d

Jerry

"B. R.Ramachandran" wrote:

Hi,

Let's suppose that the x- and y- ranges are in A2:A51 and B2:B51
respectively, and you are fitting a 6-order polynomial to your data. Select
a 7 column x 1 row area, enter the following formula, and confirm
with CTRL-SHIFT-ENTER.

=LINEST(B2:B51,A2:A51^{0,1,2,3,4,5,6},0,)

The formula will return the 7 coefficients, starting from the zeroth order
and ending with the 6th order.

If you want to have the coefficients shown starting from the 6th order and
ending in the zeroth order, modify the formula as,

=LINEST(B2:B51,A2:A51^{6,5,4,3,2,1,0},0,)

In general, for a polynomial fit of order n (where n=2 to 6), select a (n+1)
column x 1 row area, and use one of the following formulas:

=LINEST(B2:B51,A2:A51^{0,1,2,....,n},0,)
=LINEST(B2:B51,A2:A51^{n,n-1,....,1,0},0,)

Regards,
B. R. Ramachandran


"senrats" wrote:

how can i obtain polynomial constants when using trendlines. i sometimes
need to used these constants in other calculations but must manually enter
them in another context.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Polynomial regression - how does Excel do it? (under "Trendline") JH Charts and Charting 2 January 5th, 2006 05:07 PM
Polynomial Formula Incorrect? DCLittlejohn Charts and Charting 1 June 27th, 2005 08:50 PM
More than 2 constants in Index Ashley Worksheet Functions 1 February 11th, 2005 06:56 AM
How to Obtain the Height of a Form? Kevin Myers Using Forms 5 June 18th, 2004 03:38 AM
Forecast - polynomial trends Ron Rosenfeld Worksheet Functions 6 April 15th, 2004 03:36 AM


All times are GMT +1. The time now is 09:46 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.