Mercurial > hg > octave-nkf
diff scripts/linear-algebra/istriu.m @ 19111:d0d0858cfab1
doc: Match docstring variable names to function variable names for linear-algebra m-files.
* isbanded.m, isdefinite.m, isdiag.m, ishermitian.m, issymmetric.m, istril.m,
istriu.m: Use 'A' for input matrix in linear algebra routines. Change docstrings
from 'x' to 'A'.
author | Rik <rik@octave.org> |
---|---|
date | Mon, 14 Jul 2014 08:54:45 -0700 |
parents | 9addb5ad9426 |
children | 4197fc428c7d |
line wrap: on
line diff
--- a/scripts/linear-algebra/istriu.m +++ b/scripts/linear-algebra/istriu.m @@ -17,8 +17,8 @@ ## <http://www.gnu.org/licenses/>. ## -*- texinfo -*- -## @deftypefn {Function File} {} istriu (@var{x}) -## Return true if @var{x} is an upper triangular matrix. +## @deftypefn {Function File} {} istriu (@var{A}) +## Return true if @var{A} is an upper triangular matrix. ## ## An upper triangular matrix has nonzero entries only on the main diagonal ## and above.