view scripts/elfun/acot.m @ 1229:7d7c3eaa1d3b

[project @ 1995-04-10 01:04:13 by jwe]
author jwe
date Mon, 10 Apr 1995 01:04:46 +0000
parents 3470f1e25a79
children 5cffc4b8de57
line wrap: on
line source

function w = acot (z)

# acot (z):  compute the inverse cotangent for each element of z.

  if (nargin != 1)
    usage ("acot (z)");
  endif

  w = atan (1 ./ z);

endfunction