x | Real variable that specifies the independent variable. |
Shift | Real variable that specifies a shift in the polynomial. |
Coefficients | Real variables that define as many as thirty-one coefficients for the polynomial series. |
Function | POLY(TIME, 0, 0, 0, 1) |
Expanded function | POLY = TIME2 |
Function | POLY(TIME, 5, 0, 10) |
Expanded function | POLY=10*(TIME-5) |
Function | POLY(TIME, 10, 0, 25, 0, 0.75) |
Expanded function | POLY=-25*[TIME-10]+ 0.75*[TIME-10]3 |