22 #ifndef _BLAZE_MATH_MATRIX_H_
23 #define _BLAZE_MATH_MATRIX_H_
46 template<
typename MT,
bool SO >
47 inline std::ostream& operator<<( std::ostream& os, const Matrix<MT,SO>& dv );
62 inline std::ostream& operator<<( std::ostream& os, const Matrix<MT,SO>& m )
64 for(
size_t i=0UL; i<(~m).
rows(); ++i ) {
66 for(
size_t j=0UL; j<(~m).
columns(); ++j ) {
67 os << std::setw(12) << (~m)(i,j) <<
" ";