Mercurial > hg > octave-nkf
annotate scripts/elfun/csc.m @ 12541:dd2c70b30f28
Add tests for ifftshift.m
author | Robert T. Short <octave@phaselockedsystems.com.com> |
---|---|
date | Sat, 26 Mar 2011 06:50:12 -0700 |
parents | fd0a3ac60b0e |
children | 72c96de7a403 |
rev | line source |
---|---|
11523 | 1 ## Copyright (C) 1994-2011 John W. Eaton |
2313 | 2 ## |
3 ## This file is part of Octave. | |
4 ## | |
5 ## Octave is free software; you can redistribute it and/or modify it | |
6 ## under the terms of the GNU General Public License as published by | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
2313 | 9 ## |
10 ## Octave is distributed in the hope that it will be useful, but | |
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 ## General Public License for more details. | |
14 ## | |
15 ## You should have received a copy of the GNU General Public License | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
2303 | 18 |
3321 | 19 ## -*- texinfo -*- |
3428 | 20 ## @deftypefn {Mapping Function} {} csc (@var{x}) |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
21 ## Compute the cosecant for each element of @var{x} in radians. |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
22 ## @seealso{acsc, cscd, csch} |
3321 | 23 ## @end deftypefn |
2311 | 24 |
2314 | 25 ## Author: jwe |
26 | |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
27 function y = csc (x) |
2325 | 28 |
713 | 29 if (nargin != 1) |
6046 | 30 print_usage (); |
713 | 31 endif |
32 | |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
33 y = 1 ./ sin(x); |
2325 | 34 |
713 | 35 endfunction |
7385 | 36 |
37 %!test | |
38 %! rt2 = sqrt (2); | |
39 %! rt3 = sqrt (3); | |
40 %! x = [pi/6, pi/4, pi/3, pi/2, 2*pi/3, 3*pi/4, 5*pi/6]; | |
41 %! v = [2, rt2, 2*rt3/3, 1, 2*rt3/3, rt2, 2]; | |
42 %! assert(all (abs (csc (x) - v) < sqrt (eps))); | |
43 | |
44 %!error csc (); | |
45 | |
46 %!error csc (1, 2); | |
47 |