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

  1. function y = asec(z)
  2. %ASEC    Inverse secant.
  3. %    ASEC(X) is the inverse secant of the elements of X.
  4.  
  5. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  6.  
  7. y = acos(1./z);
  8.