home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 5.ddi / SPLINES.DI$ / PPLST.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  1.4 KB  |  35 lines

  1. % PPLST    List available M-files for work with piecewise polynomials.
  2. % Copyright (c) 1990-92 by Carl de Boor and The MathWorks, Inc.
  3.                                          % latest change: September 28, 1990
  4.                     % latest change: May 27, 1991: interval notation changed
  5.                                       % latest change: 4 mar 92: fncmb added
  6. clc;home;echo on
  7. %      The following  M-files are available for work with pp functions
  8. %      (but see also  splist.m  for M-files for spline work):
  9. %
  10. %       pp = ppmak(breaks,coefs[,d])   makes up a pp function
  11. %
  12. %       [break,coefs,k,l,d] = ppbrk(pp)   takes it apart
  13. %
  14. %       [values=] fnplt(pp)   plots on a fine grid
  15. %
  16. %       v=fnval(pp,x)    evaluates (calling on  ppual.m )
  17. %       dpp=fnder(pp[,m])    differentiates
  18. %       ipp=fnint(pp)   integrates
  19. %
  20. %       fncmb(pp1,sc1[,pp2[,sc2]])    forms weighted sum of two like pp's
  21. %
  22. %       pj=pppce(pp,j)   pulls out the j-th polynomial piece
  23. %
  24. %       pc=ppcut(pp,[a b])  pulls out the part relevant for the interval
  25. %                           [a .. b] 
  26. %
  27. %       (values = ) fnplt(pp[,symbol])  plots pp between its extreme breaks.
  28. %
  29. pause                                % touch any key to continue
  30.  
  31. %     For a precise description of the term pp (:= piecewise polynomial) as
  32. % used here, type  help ppalldem .
  33.  
  34. pause                                % touch any key to finish
  35.