Mercurial > hg > octave-lyh
comparison scripts/plot/findobj.m @ 17315:4448cc742880
Use '!' not operator rather than '~' in core m-files.
* scripts/general/interp1.m, scripts/image/rgb2ind.m, scripts/plot/findobj.m,
scripts/polynomial/polyfit.m, test/build-sparse-tests.sh,
test/classes/@Snork/end.m, test/classes/@Snork/mpower.m,
test/classes/@Snork/ne.m, test/classes/@Snork/power.m,
test/classes/@Snork/subsasgn.m, test/classes/@Snork/subsref.m,
test/classes/@Spork/loadobj.m, test/classes/classes.tst:
Use '!' not operator rather than '~' in core m-files.
author | Rik <rik@octave.org> |
---|---|
date | Wed, 21 Aug 2013 17:04:44 -0700 |
parents | bc924baa2c4e |
children | 088d014a7fe2 |
comparison
equal
deleted
inserted
replaced
17314:09543e9c8f40 | 17315:4448cc742880 |
---|---|
188 error ("findobj: properties and options must be strings"); | 188 error ("findobj: properties and options must be strings"); |
189 endif | 189 endif |
190 endwhile | 190 endwhile |
191 | 191 |
192 numpairs = np - 1; | 192 numpairs = np - 1; |
193 if (~ isempty (logicaloperator)) | 193 if (! isempty (logicaloperator)) |
194 logicaloperator = shift (logicaloperator, 1); | 194 logicaloperator = shift (logicaloperator, 1); |
195 endif | 195 endif |
196 | 196 |
197 ## Load all objects which qualify for being searched. | 197 ## Load all objects which qualify for being searched. |
198 idepth = 0; | 198 idepth = 0; |