view scripts/elfun/acsc.m @ 952:284ff6c17ce9

[project @ 1994-11-30 23:16:39 by jwe]
author jwe
date Wed, 30 Nov 1994 23:16:39 +0000
parents 3470f1e25a79
children 5cffc4b8de57
line wrap: on
line source

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

  w = asin (1 ./ z);
  
endfunction