35 #ifndef _BLAZE_MATH_MATRIX_H_
36 #define _BLAZE_MATH_MATRIX_H_
59 template<
typename MT,
bool SO >
60 inline std::ostream& operator<<( std::ostream& os, const Matrix<MT,SO>& dv );
75 inline std::ostream& operator<<( std::ostream& os, const Matrix<MT,SO>& m )
77 for(
size_t i=0UL; i<(~m).
rows(); ++i ) {
79 for(
size_t j=0UL; j<(~m).
columns(); ++j ) {
80 os << std::setw(12) << (~m)(i,j) <<
" ";
Header file for the Matrix base class.
size_t columns(const Matrix< MT, SO > &m)
Returns the current number of columns of the matrix.
Definition: Matrix.h:170
size_t rows(const Matrix< MT, SO > &m)
Returns the current number of rows of the matrix.
Definition: Matrix.h:154