home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-bin.lha / lib / octave / 1.1.1 / m / elfun / csch.m < prev    next >
Text File  |  1996-10-12  |  183b  |  12 lines

  1. function w = csch (z)
  2.   
  3. # csch (z):  compute the hyperbolic cosecant for each element of z.
  4.   
  5.   if (nargin != 1)
  6.     usage ("csch (z)");
  7.   endif
  8.  
  9.   w = 1 ./ sinh(z);
  10.   
  11. endfunction
  12.