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
/
sec.m
< prev
next >
Wrap
Text File
|
1996-10-12
|
165b
|
12 lines
function w = sec (z)
# sec (z): compute the secant for each element of z.
if (nargin != 1)
usage ("sec (z)");
endif
w = 1 ./ cos(z);
endfunction