|
template<int Rows, int Cols, typename Scalar > |
Matrix< Rows, Cols, Scalar > & | tarch::la::operator*= (Matrix< Rows, Cols, Scalar > &matrix, const Scalar &scalar) |
|
template<int Rows, int Cols, typename Scalar > |
Matrix< Rows, Cols, Scalar > | tarch::la::operator* (const Matrix< Rows, Cols, Scalar > &matrix, const Scalar &scalar) |
| Multiplies every component of the matrix with the scalar.
|
|
template<int Rows, int Cols, typename Scalar > |
Matrix< Rows, Cols, Scalar > | tarch::la::operator* (const Scalar &scalar, const Matrix< Rows, Cols, Scalar > &matrix) |
| Multiplies every component of the matrix with the scalar.
|
|
template<int Rows, int Cols> |
Matrix< Rows, Cols, std::complex< double > > | tarch::la::operator* (const double &scalar, const Matrix< Rows, Cols, std::complex< double > > &matrix) |
|