Mercurial > hg > octave-lyh
annotate scripts/elfun/asec.m @ 11188:4cb1522e4d0f
Use function handle as input to cellfun,
rather than quoted function name or anonymous function wrapper.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Wed, 03 Nov 2010 17:20:56 -0700 |
parents | 16f53d29049f |
children | c776f063fefe |
rev | line source |
---|---|
9245 | 1 ## Copyright (C) 1994, 1996, 1997, 1999, 2000, 2005, 2006, 2007, 2008, 2009 |
7017 | 2 ## John W. Eaton |
2313 | 3 ## |
4 ## This file is part of Octave. | |
5 ## | |
6 ## Octave is free software; you can redistribute it and/or modify it | |
7 ## under the terms of the GNU General Public License as published by | |
7016 | 8 ## the Free Software Foundation; either version 3 of the License, or (at |
9 ## your option) any later version. | |
2313 | 10 ## |
11 ## Octave is distributed in the hope that it will be useful, but | |
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 ## General Public License for more details. | |
15 ## | |
16 ## You should have received a copy of the GNU General Public License | |
7016 | 17 ## along with Octave; see the file COPYING. If not, see |
18 ## <http://www.gnu.org/licenses/>. | |
2303 | 19 |
3321 | 20 ## -*- texinfo -*- |
3428 | 21 ## @deftypefn {Mapping Function} {} asec (@var{x}) |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
22 ## Compute the inverse secant in radians for each element of @var{x}. |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
23 ## @seealso{sec, asecd} |
3321 | 24 ## @end deftypefn |
2311 | 25 |
2314 | 26 ## Author: jwe |
27 | |
713 | 28 function w = asec (z) |
2325 | 29 |
713 | 30 if (nargin != 1) |
6046 | 31 print_usage (); |
713 | 32 endif |
33 | |
34 w = acos (1 ./ z); | |
2325 | 35 |
2326 | 36 endfunction |
7385 | 37 |
38 %!test | |
39 %! rt2 = sqrt (2); | |
40 %! rt3 = sqrt (3); | |
41 %! v = [0, pi/6, pi/4, pi/3, 2*pi/3, 3*pi/4, 5*pi/6, pi]; | |
42 %! x = [1, 2*rt3/3, rt2, 2, -2, -rt2, -2*rt3/3, -1]; | |
7742 | 43 %! assert(all (abs (asec (x) - v) < sqrt (eps))); |
7385 | 44 |
45 %!error asec (); | |
46 | |
47 %!error asec (1, 2); |