home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / e / e032 / 3.ddi / FILES / PRELOAD.PAK / SIMPLIFY.M < prev    next >
Encoding:
Text File  |  1992-07-29  |  562 b   |  22 lines

  1.  
  2. (* This sets up the autoloading of packages for the simplification of
  3.         various math functions.
  4. *)
  5.  
  6. Begin[ "System`"]
  7.  
  8.    SystemStub[ {SimplifyGamma}, "Gamma.m"]
  9.  
  10.    SystemStub[ {SimplifyPolyGamma}, "PolyGamma.m"]
  11.  
  12.  SimplifyGamma::usage =
  13. "SimplifyGamma[expr] performs a sequence of gamma-function transformations
  14.    on expr, and returns the simplest form it finds."
  15.  
  16.  SimplifyPolyGamma::usage =
  17. "SimplifyPolyGamma[expr] performs a sequence of polygamma-function
  18.    transformations on expr, and returns the simplest form it finds."
  19.  
  20. End[]
  21.  
  22.