home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / POLYFUN.DI$ / CONTENTS.M next >
Encoding:
Text File  |  1993-03-07  |  772 b   |  21 lines

  1. % Polynomial and interpolation functions.
  2. %
  3. % Polynomials.
  4. %   roots       - Find polynomial roots.
  5. %   poly        - Construct polynomial with specified roots.
  6. %   polyval     - Evaluate polynomial.
  7. %   polyvalm    - Evaluate polynomial with matrix argument.
  8. %   residue     - Partial-fraction expansion (residues).
  9. %   polyfit     - Fit polynomial to data.
  10. %   polyder     - Differentiate polynomial.
  11. %   conv        - Multiply polynomials.
  12. %   deconv      - Divide polynomials.
  13. %
  14. % Data interpolation.
  15. %   interp1     - 1-D interpolation (1-D table lookup).
  16. %   interp2     - 2-D interpolation (2-D table lookup).
  17. %   interpft    - 1-D interpolation using FFT method.
  18. %   griddata    - Data gridding.
  19.  
  20. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  21.