home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / ELFUN.DI$ / CONTENTS.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  1.6 KB  |  53 lines

  1. % Elementary math functions.
  2. %
  3. % Trigonometric.
  4. %   sin         - Sine.
  5. %   sinh        - Hyperbolic sine.
  6. %   asin        - Inverse sine.
  7. %   asinh       - Inverse hyperbolic sine.
  8. %   cos         - Cosine.
  9. %   cosh        - Hyperbolic cosine.
  10. %   acos        - Inverse cosine.
  11. %   acosh       - Inverse hyperbolic cosine.
  12. %   tan         - Tangent.
  13. %   tanh        - Hyperbolic tangent.
  14. %   atan        - Inverse tangent.
  15. %   atan2       - Four quadrant inverse tangent.
  16. %   atanh       - Inverse hyperbolic tangent.
  17. %   sec         - Secant.
  18. %   sech        - Hyperbolic secant.
  19. %   asec        - Inverse secant.
  20. %   asech       - Inverse hyperbolic secant.
  21. %   csc         - Cosecant.
  22. %   csch        - Hyperbolic cosecant.
  23. %   acsc        - Inverse cosecant.
  24. %   acsch       - Inverse hyperbolic cosecant.
  25. %   cot         - Cotangent.
  26. %   coth        - Hyperbolic cotangent.
  27. %   acot        - Inverse cotangent.
  28. %   acoth       - Inverse hyperbolic cotangent.
  29. %
  30. % Exponential.
  31. %   exp         - Exponential.
  32. %   log         - Natural logarithm.
  33. %   log10       - Common logarithm.
  34. %   sqrt        - Square root.
  35. %
  36. % Complex.
  37. %   abs         - Absolute value.
  38. %   angle       - Phase angle.
  39. %   conj        - Complex conjugate.
  40. %   imag        - Complex imaginary part.
  41. %   real        - Complex real part.
  42. %
  43. % Numeric.
  44. %   fix         - Round towards zero.
  45. %   floor       - Round towards minus infinity.
  46. %   ceil        - Round towards plus infinity.
  47. %   round       - Round towards nearest integer.
  48. %   rem         - Remainder after division.
  49. %   sign        - Signum function.
  50.  
  51. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  52.  
  53.