comparison libinterp/octave-value/ov-base-mat.cc @ 21118:3ac9f47fb04b

Invert pattern if/code/else/err_XXX to if !/err_XXX/code. * daspk.cc, dasrt.cc, dassl.cc, data.cc, debug.cc, load-save.cc, lsode.cc, quad.cc, xnorm.cc, xpow.cc, ov-base-diag.cc, ov-base-mat.cc, ov-base-scalar.cc, ov-base.cc, ov-bool-mat.cc, ov-bool-sparse.cc, ov-cell.cc, ov-ch-mat.cc, ov-class.cc, ov-cx-mat.cc, ov-cx-sparse.cc, ov-float.cc, ov-flt-cx-mat.cc, ov-flt-re-mat.cc, ov-intx.h, ov-perm.cc, ov-range.cc, ov-re-mat.cc, ov-re-sparse.cc, ov-scalar.cc, ov-struct.cc, ov.cc, pt-idx.cc, Array-util.cc, Array.cc, Sparse.cc, lo-specfun.cc, mx-inlines.cc, oct-binmap.h: Invert pattern if/code/else/err_XXX to if !/err_XXX/code.
author Rik <rik@octave.org>
date Wed, 20 Jan 2016 16:08:30 -0800
parents e39e05d90788
children 538b57866b90
comparison
equal deleted inserted replaced
21117:c1df36373272 21118:3ac9f47fb04b
413 { 413 {
414 MT t1 (matrix.reshape (dim_vector (nel, 1))); 414 MT t1 (matrix.reshape (dim_vector (nel, 1)));
415 415
416 if (t1.any_element_is_nan ()) 416 if (t1.any_element_is_nan ())
417 err_nan_to_logical_conversion (); 417 err_nan_to_logical_conversion ();
418 else 418
419 { 419 boolNDArray t2 = t1.all ();
420 boolNDArray t2 = t1.all (); 420
421 421 retval = t2(0);
422 retval = t2(0);
423 }
424 } 422 }
425 423
426 return retval; 424 return retval;
427 } 425 }
428 426