Scythe-1.0.3
template<typename T_type = double, matrix_order ORDER = Col, matrix_style STYLE = Concrete>
Matrix& scythe::Matrix< T_type, ORDER, STYLE >::operator&= ( T_type  x) [inline]

Logically AND this Matrix with a scalar.

This operator computes the element-wise logical AND of this Matrix and a scalar. That is, after the operation, an element in this Matrix will evaluate to true (or the type-specific analog of true, typically 1) iff the corresponding element previously residing in this Matrix and x both evaluate to true.

Parameters:
xThe scalar to AND with each element.
See also:
operator&=(const Matrix<T_type, O, S> &)
operator|=(T_type)
Exceptions:
scythe_conformation_error(Level 1)