home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / elfun / coth.m < prev    next >
Text File  |  1996-09-28  |  183b  |  11 lines

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