poly
Perform polynomial algebra on cube
This program will perform polynomial algebra on a cube up to the eighth
order. The equation used:
out = (in * mult1) + (in**2 * mult2) + ... +(in**8 *mult8) + add
Categories
Related Objects and Documents
Applications
History
Jim Mathews | 1994-01-12 | Original version |
Tracie Sucharski | 2002-08-22 | Ported to Isis 3.0 |
Tracie Sucharski | 2003-04-23 | Initialize the value of order to 0. |
Kim Sides | 2003-05-13 | Added application test |
Stuart Sides | 2003-05-16 | Modified schema location from astogeology... to isis.astrogeology..." |
Stuart Sides | 2003-05-30 | Added modifications to apptest by Kim |
Stuart Sides | 2003-07-29 | Modified filename parameters to be cube parameters where necessary |
Sean Crosby | 2007-02-21 | Removed exceptions and corrected math logic. |