# HG changeset patch # User Rik # Date 1341774146 25200 # Node ID cfb64ea5c6a35fa7fd7d19cc8935f5b9ccbcc329 # Parent f6d3d5b0bd4218deb04be8691e0fa733e40f3fc2 doc: Add Seealso links to betainc() docstring * betainc.cc (betainc): Add Seealso links to betainc() docstring. diff -r f6d3d5b0bd42 -r cfb64ea5c6a3 src/DLD-FUNCTIONS/betainc.cc --- a/src/DLD-FUNCTIONS/betainc.cc Sun Jul 08 12:00:45 2012 -0700 +++ b/src/DLD-FUNCTIONS/betainc.cc Sun Jul 08 12:02:26 2012 -0700 @@ -62,6 +62,7 @@ If @var{x} has more than one component, both @var{a} and @var{b} must be\n\ scalars. If @var{x} is a scalar, @var{a} and @var{b} must be of\n\ compatible dimensions.\n\ +@seealso{betaincinv, beta, betaln}\n\ @end deftypefn") { octave_value retval; @@ -448,10 +449,10 @@ } } - // FIXME: It would be better to have an algorithm for betaincinv which accepted - // float inputs and returned float outputs. As it is, we do extra work - // to calculate betaincinv to double precision and then throw that precision - // away. + // FIXME: It would be better to have an algorithm for betaincinv which + // accepted float inputs and returned float outputs. As it is, we do + // extra work to calculate betaincinv to double precision and then throw + // that precision away. if (x_arg.is_single_type () || a_arg.is_single_type () || b_arg.is_single_type ()) {