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

  1. function k = ellipk(kind,m)
  2. %ELLIPK    Complete elliptic integrals.
  3.  
  4. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  5.  
  6. if kind ~= 1
  7.     error('Use ellipke for elliptic integrals of the second kind.')
  8. end
  9. disp('This usage of ellipk(kind,m) is obsolete and will be eliminated')
  10. disp('in future versions. Please use ellipke(m) instead.')
  11. k = ellipke(m);
  12.