diff src/DLD-FUNCTIONS/det.cc @ 10687:a8ce6bdecce5

Improve documentation strings.
author Rik <octave@nomad.inbox5.com>
date Tue, 08 Jun 2010 20:22:38 -0700
parents d0ce5e973937
children fd0a3ac60b0e
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/det.cc	Tue Jun 08 21:08:03 2010 +0200
+++ b/src/DLD-FUNCTIONS/det.cc	Tue Jun 08 20:22:38 2010 -0700
@@ -50,10 +50,14 @@
 
 DEFUN_DLD (det, args, nargout,
   "-*- texinfo -*-\n\
-@deftypefn {Loadable Function} {[@var{d}, @var{rcond}] =} det (@var{a})\n\
-Compute the determinant of @var{a} using @sc{lapack} for full and UMFPACK\n\
-for sparse matrices.  Return an estimate of the reciprocal condition number\n\
-if requested.\n\
+@deftypefn  {Loadable Function} {} det (@var{a})\n\
+@deftypefnx {Loadable Function} {[@var{d}, @var{rcond}] =} det (@var{a})\n\
+Compute the determinant of @var{a}.\n\
+\n\
+Routines from @sc{lapack} are used for full matrices and code from\n\
+@sc{umfpack} is used for sparse matrices.\n\
+\n\
+Return an estimate of the reciprocal condition number if requested.\n\
 @end deftypefn")
 {
   octave_value_list retval;