home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l450 / 1.ddi / MATPAK.1 / arc / ACOSH.M next >
Encoding:
Text File  |  1987-03-04  |  120 b   |  4 lines

  1. function y = acosh(x)
  2. %ACOSH    ACOSH(X) is the inverse hyperbolic cosine of the elements of X.
  3. y=log(x+sqrt(x.^2-1));
  4.