15.37.31 Examples

TD:FIT POLY TERMS=10 INCLUDE EVEN Fits a polynomial using the even powers of X. (1.0,X**2...X**8) A curve with the resulting fit replaces the current data. TD:FIT LEGEN TERMS=3 Fits a legendre polynomial of 3 terms. (1,L1,L2) A curve with the resulting fit replaces the current data. TD:FIT POLY INCLUDE 2,3,5 CURVE APPEND FROM 0 to 10 by .1 Fits a polynomial using X**2,X**3,X**5 and appends the histogram at the end of the current data. The curve contains 101 data points spanning the range of X from 0.0 to 10.0 TD:FIT POLY INCLUDE NONE COEF 1.0,.5,-.25 CURVE FROM 0 TO 10 BY .5 Creates a parabola Y=1.0+0.5*X-0.25*X**2 from 0 to 10 in steps of 0.5. Note: that no fit is performed since no coefficints were included.