changeset 14932:cfb64ea5c6a3

doc: Add Seealso links to betainc() docstring * betainc.cc (betainc): Add Seealso links to betainc() docstring.
author Rik <octave@nomad.inbox5.com>
date Sun, 08 Jul 2012 12:02:26 -0700
parents f6d3d5b0bd42
children 50e9e02d7c0e fa3989fbb1b5
files src/DLD-FUNCTIONS/betainc.cc
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/betainc.cc
+++ b/src/DLD-FUNCTIONS/betainc.cc
@@ -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 ())
         {