Mercurial > hg > octave-lyh
annotate scripts/deprecated/gammai.m @ 11151:0c38b45ab49c
Deprecate betai, gammai, is_global functions.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sun, 24 Oct 2010 07:28:43 -0700 |
parents | scripts/specfun/gammai.m@a1dbe9d80eee |
children | fd0a3ac60b0e |
rev | line source |
---|---|
7017 | 1 ## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2005, 2006, |
2 ## 2007 John W. Eaton | |
3133 | 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. | |
3133 | 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/>. | |
3133 | 19 |
3458 | 20 ## -*- texinfo -*- |
21 ## @deftypefn {Function File} {} gammai (@var{a}, @var{x}) | |
3444 | 22 ## This function is provided for compatibility with older versions of |
3458 | 23 ## Octave. New programs should use @code{gammainc} instead. |
3426 | 24 ## |
11151
0c38b45ab49c
Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
25 ## @code{gammai (@var{a}, @var{x})} is the same as |
0c38b45ab49c
Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
26 ## @code{gammainc (@var{x}, @var{a})}. |
3458 | 27 ## @end deftypefn |
3133 | 28 |
29 ## Author: jwe | |
30 ## Created: 30 Jan 1998 | |
31 | |
11151
0c38b45ab49c
Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
32 ## Deprecated in version 3.4 |
0c38b45ab49c
Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
33 |
3133 | 34 function retval = gammai (a, x) |
11151
0c38b45ab49c
Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
35 persistent warned = false; |
0c38b45ab49c
Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
36 if (! warned) |
0c38b45ab49c
Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
37 warned = true; |
0c38b45ab49c
Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
38 warning ("Octave:deprecated-function", |
0c38b45ab49c
Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
39 "gammai is obsolete and will be removed from a future version of Octave; please use gammainc instead"); |
0c38b45ab49c
Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
40 endif |
3133 | 41 |
42 if (nargin == 2) | |
43 retval = gammainc (x, a); | |
44 else | |
6046 | 45 print_usage (); |
3133 | 46 endif |
47 | |
48 endfunction |