comparison src/ov-null-mat.cc @ 10840:89f4d7e294cc

Grammarcheck .cc files
author Rik <octave@nomad.inbox5.com>
date Sat, 31 Jul 2010 11:18:11 -0700
parents eb63fbe60fab
children a4f482e66b65
comparison
equal deleted inserted replaced
10839:65bc065bec95 10840:89f4d7e294cc
90 90
91 DEFUN (isnull, args, , 91 DEFUN (isnull, args, ,
92 "-*- texinfo -*-\n\ 92 "-*- texinfo -*-\n\
93 @deftypefn {Built-in Function} {} isnull (@var{x})\n\ 93 @deftypefn {Built-in Function} {} isnull (@var{x})\n\
94 Return 1 if @var{x} is a special null matrix, string or single quoted string.\n\ 94 Return 1 if @var{x} is a special null matrix, string or single quoted string.\n\
95 Indexed assignment with such a value as right-hand side should delete array elements.\n\ 95 Indexed assignment with such a value as right-hand side should delete array\n\
96 This function should be used when overloading indexed assignment for user-defined \n\ 96 elements. This function should be used when overloading indexed assignment for\n\
97 classes instead of @code{isempty}, to distinguish the cases:\n\ 97 user-defined classes instead of @code{isempty}, to distinguish the cases:\n\
98 @table @asis\n\ 98 @table @asis\n\
99 @item @code{A(I) = []}\n\ 99 @item @code{A(I) = []}\n\
100 This should delete elements if @code{I} is nonempty.\n\ 100 This should delete elements if @code{I} is nonempty.\n\
101 \n\
101 @item @code{X = []; A(I) = X}\n\ 102 @item @code{X = []; A(I) = X}\n\
102 This should give an error if @code{I} is nonempty.\n\ 103 This should give an error if @code{I} is nonempty.\n\
103 @end table\n\ 104 @end table\n\
104 @end deftypefn") 105 @end deftypefn")
105 { 106 {