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

Kronecker multiply this Matrix by a scalar.

This method Kronecker multiplies this Matrix with some scalar, x. This is a degenerate case of Kronecker multiplication, simply multiplying every element in the Matrix by x.

Note:
This method is identical in behavior to operator%=(T_type) and operator*=(T_type).
Parameters:
xThe scalar to Kronecker multiply this Matrix by.
See also:
kronecker(const Matrix<T_type, O, S> &)
operator+=(T_type)
operator-=(T_type)
operator%=(T_type)
operator/=(T_type)
operator^=(T_type)
operator*=(T_type)