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 OR this Matrix with a scalar.

This operator computes the element-wise logical OR 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) if the corresponding element previously residing in this Matrix or x evaluate to true.

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