home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
octave-1.1.1p1-bin.lha
/
lib
/
octave
/
1.1.1
/
m
/
elfun
/
acsch.m
< prev
next >
Wrap
Text File
|
1996-10-12
|
195b
|
11 lines
function w = acsch (z)
# acsch (z): compute the inverse hyperbolic cosecant for each element of z.
if (nargin != 1)
usage ("acsch (z)");
endif
w = asinh (1 ./ z);
endfunction