annotate scripts/deprecated/gammai.m @ 13767:2b98014771b4

fileread.m: Add functional test. * fileread.m: Add functional test.
author Rik <octave@nomad.inbox5.com>
date Thu, 27 Oct 2011 22:17:03 -0700
parents c792872f8942
children 72c96de7a403
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11523
fd0a3ac60b0e update copyright notices
John W. Eaton <jwe@octave.org>
parents: 11151
diff changeset
1 ## Copyright (C) 1994-2011 John W. Eaton
3133
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
2 ##
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
3 ## This file is part of Octave.
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
4 ##
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
6 ## under the terms of the GNU General Public License as published by
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
7 ## the Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
8 ## your option) any later version.
3133
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
9 ##
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
13 ## General Public License for more details.
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
14 ##
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
15 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
16 ## along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
17 ## <http://www.gnu.org/licenses/>.
3133
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
18
3458
d25bc039237b [project @ 2000-01-19 09:36:14 by jwe]
jwe
parents: 3444
diff changeset
19 ## -*- texinfo -*-
d25bc039237b [project @ 2000-01-19 09:36:14 by jwe]
jwe
parents: 3444
diff changeset
20 ## @deftypefn {Function File} {} gammai (@var{a}, @var{x})
3444
fa0d84558faa [project @ 2000-01-17 08:40:39 by jwe]
jwe
parents: 3426
diff changeset
21 ## This function is provided for compatibility with older versions of
3458
d25bc039237b [project @ 2000-01-19 09:36:14 by jwe]
jwe
parents: 3444
diff changeset
22 ## Octave. New programs should use @code{gammainc} instead.
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3408
diff changeset
23 ##
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
24 ## @code{gammai (@var{a}, @var{x})} is the same as
11151
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
25 ## @code{gammainc (@var{x}, @var{a})}.
3458
d25bc039237b [project @ 2000-01-19 09:36:14 by jwe]
jwe
parents: 3444
diff changeset
26 ## @end deftypefn
3133
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
27
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
28 ## Author: jwe
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
29 ## Created: 30 Jan 1998
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
30
11151
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
31 ## Deprecated in version 3.4
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
32
3133
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
33 function retval = gammai (a, x)
11151
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
34 persistent warned = false;
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
35 if (! warned)
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
36 warned = true;
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
37 warning ("Octave:deprecated-function",
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
38 "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
39 endif
3133
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
40
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
41 if (nargin == 2)
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
42 retval = gammainc (x, a);
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
43 else
6046
34f96dd5441b [project @ 2006-10-10 16:10:25 by jwe]
jwe
parents: 5307
diff changeset
44 print_usage ();
3133
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
45 endif
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
46
812645c63072 [project @ 1998-01-30 21:23:00 by jwe]
jwe
parents:
diff changeset
47 endfunction