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
/
acot.m
next >
Wrap
Text File
|
1996-09-28
|
175b
|
11 lines
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