comparison liboctave/CMatrix.cc @ 9553:0c72d9284087

further bool ops tweaks
author Jaroslav Hajek <highegg@gmail.com>
date Fri, 21 Aug 2009 12:12:25 +0200
parents 19d298e6f7e5
children 7dafdb8b062f
comparison
equal deleted inserted replaced
9552:ded32956d660 9553:0c72d9284087
3056 // unary operations 3056 // unary operations
3057 3057
3058 boolMatrix 3058 boolMatrix
3059 ComplexMatrix::operator ! (void) const 3059 ComplexMatrix::operator ! (void) const
3060 { 3060 {
3061 ND_LOGICAL_NAN_CHECK (*this); 3061 return do_mx_unary_op<boolMatrix, ComplexMatrix> (*this, mx_inline_not);
3062 return do_mx_unary_op<boolMatrix, ComplexMatrix> (*this, mx_inline_iszero);
3063 } 3062 }
3064 3063
3065 // other operations 3064 // other operations
3066 3065
3067 Matrix 3066 Matrix