view scripts/elfun/csch.m @ 1249:86fc40576f22

[project @ 1995-04-11 01:03:08 by jwe]
author jwe
date Tue, 11 Apr 1995 01:03:57 +0000
parents 3470f1e25a79
children 5cffc4b8de57
line wrap: on
line source

function w = csch (z)
  
# csch (z):  compute the hyperbolic cosecant for each element of z.
  
  if (nargin != 1)
    usage ("csch (z)");
  endif

  w = 1 ./ sinh(z);
  
endfunction