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>& m );
75 inline std::ostream& operator<<( std::ostream& os, const Matrix<MT,SO>& m )
79 for(
size_t i=0UL; i<tmp.rows(); ++i ) {
81 for(
size_t j=0UL; j<tmp.columns(); ++j ) {
82 os << std::setw(12) << tmp(i,j) <<
" ";
const This & CompositeType
Data type for composite expression templates.
Definition: CompressedMatrix.h:2588
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the Matrix base class.