comparison src/DLD-FUNCTIONS/rcond.cc @ 9064:7c02ec148a3c

Check grammar on all .cc files Same check as previously done on .m files Attempt to enforce some conformity in documentation text for rules such as two spaces after a period, commas around latin abbreviations, etc.
author Rik <rdrider0-list@yahoo.com>
date Sat, 28 Mar 2009 13:57:22 -0700
parents 6f2d95255911
children 923c7cb7f13f
comparison
equal deleted inserted replaced
9063:a6cf0ad87eee 9064:7c02ec148a3c
32 32
33 DEFUN_DLD (rcond, args, , 33 DEFUN_DLD (rcond, args, ,
34 "-*- texinfo -*-\n\ 34 "-*- texinfo -*-\n\
35 @deftypefn {Loadable Function} {@var{c} =} rcond (@var{a})\n\ 35 @deftypefn {Loadable Function} {@var{c} =} rcond (@var{a})\n\
36 Compute the 1-norm estimate of the reciprocal condition as returned\n\ 36 Compute the 1-norm estimate of the reciprocal condition as returned\n\
37 by LAPACK. If the matrix is well-conditioned then @var{c} will be near\n\ 37 by LAPACK. If the matrix is well-conditioned then @var{c} will be near\n\
38 1 and if the matrix is poorly conditioned it will be close to zero.\n\ 38 1 and if the matrix is poorly conditioned it will be close to zero.\n\
39 \n\ 39 \n\
40 The matrix @var{a} must not be sparse. If the matrix is sparse then\n\ 40 The matrix @var{a} must not be sparse. If the matrix is sparse then\n\
41 @code{condest (@var{a})} or @code{rcond (full (@var{a}))} should be used\n\ 41 @code{condest (@var{a})} or @code{rcond (full (@var{a}))} should be used\n\
42 instead.\n\ 42 instead.\n\
43 @seealso{inv}\n\ 43 @seealso{inv}\n\
44 @end deftypefn") 44 @end deftypefn")
45 { 45 {