annotate scripts/specfun/betai.m @ 7017:a1dbe9d80eee

[project @ 2007-10-12 21:27:11 by jwe]
author jwe
date Fri, 12 Oct 2007 21:27:37 +0000
parents 93c65f2a5668
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7017
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 7016
diff changeset
1 ## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2005, 2006,
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 7016
diff changeset
2 ## 2007 John W. Eaton
3134
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
3 ##
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
4 ## This file is part of Octave.
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
5 ##
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
6 ## Octave is free software; you can redistribute it and/or modify it
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
7 ## 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
8 ## 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
9 ## your option) any later version.
3134
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
10 ##
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
11 ## Octave is distributed in the hope that it will be useful, but
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
14 ## General Public License for more details.
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
15 ##
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
16 ## 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
17 ## 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
18 ## <http://www.gnu.org/licenses/>.
3134
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
19
3458
d25bc039237b [project @ 2000-01-19 09:36:14 by jwe]
jwe
parents: 3444
diff changeset
20 ## -*- texinfo -*-
d25bc039237b [project @ 2000-01-19 09:36:14 by jwe]
jwe
parents: 3444
diff changeset
21 ## @deftypefn {Function File} {} betai (@var{a}, @var{b}, @var{x})
3444
fa0d84558faa [project @ 2000-01-17 08:40:39 by jwe]
jwe
parents: 3426
diff changeset
22 ## This function is provided for compatibility with older versions of
fa0d84558faa [project @ 2000-01-17 08:40:39 by jwe]
jwe
parents: 3426
diff changeset
23 ## Octave. New programs should use betainc instead.
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3321
diff changeset
24 ##
3458
d25bc039237b [project @ 2000-01-19 09:36:14 by jwe]
jwe
parents: 3444
diff changeset
25 ## @code{betai (@var{a}, @var{b}, @var{x})} is the same as @code{betainc
d25bc039237b [project @ 2000-01-19 09:36:14 by jwe]
jwe
parents: 3444
diff changeset
26 ## (@var{x}, @var{a}, @var{b})}.
d25bc039237b [project @ 2000-01-19 09:36:14 by jwe]
jwe
parents: 3444
diff changeset
27 ## @end deftypefn
3134
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
28
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
29 ## Author: jwe
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
30 ## Created: 30 Jan 1998
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
31
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
32 function retval = betai (a, b, x)
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
33
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
34 if (nargin == 3)
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
35 retval = betainc (x, a, b);
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
36 else
6046
34f96dd5441b [project @ 2006-10-10 16:10:25 by jwe]
jwe
parents: 5307
diff changeset
37 print_usage ();
3134
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
38 endif
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
39
8bf70ba446d0 [project @ 1998-01-30 21:23:04 by jwe]
jwe
parents:
diff changeset
40 endfunction