Mercurial > hg > octave-nkf
annotate scripts/specfun/factorial.m @ 9141:c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Split section into "Exponents and Logarithms" and "Utility Functions"
Use Tex in many more of the doc strings for pretty printing in pdf format.
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Mon, 20 Apr 2009 17:16:09 -0700 |
parents | 1bf0ce0930be |
children | 8c71a86c4bf4 |
rev | line source |
---|---|
7017 | 1 ## Copyright (C) 2000, 2006, 2007 Paul Kienzle |
5820 | 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. | |
5820 | 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/>. | |
5820 | 18 |
19 ## -*- texinfo -*- | |
20 ## @deftypefn {Function File} {} factorial (@var{n}) | |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9051
diff
changeset
|
21 ## Return the factorial of @var{n}. If @var{n} is a scalar, this is |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9051
diff
changeset
|
22 ## equivalent to @code{prod (1:@var{n})}. For vector or matrix arguments, |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9051
diff
changeset
|
23 ## return the factorial of each element in the array. |
5820 | 24 ## @end deftypefn |
25 | |
26 function x = factorial (n) | |
6391 | 27 if (nargin != 1) |
28 print_usage (); | |
6532 | 29 elseif (any (n(:) < 0 | n(:) != round (n(:)))) |
30 error ("factorial: n must all be nonnegative integers"); | |
5820 | 31 endif |
6532 | 32 x = round (gamma (n+1)); |
5820 | 33 endfunction |
6532 | 34 |
35 %!assert (factorial(5), prod(1:5)) | |
36 %!assert (factorial([1,2;3,4]), [1,2;6,24]) | |
6542 | 37 %!assert (factorial(70), exp(sum(log(1:70))), -128*eps) |
6532 | 38 %!fail ('factorial(5.5)', "must all be nonnegative integers") |
39 %!fail ('factorial(-3)', "must all be nonnegative integers") |