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
/
sech.m
< prev
Wrap
Text File
|
1996-09-28
|
181b
|
12 lines
function w = sech (z)
# sech (z): compute the hyperbolic secant for each element of z.
if (nargin != 1)
usage ("sech (z)");
endif
w = 1 ./ cosh(z);
endfunction