35 #ifndef _BLAZE_MATH_MATRIX_H_
36 #define _BLAZE_MATH_MATRIX_H_
60 template<
typename MT,
bool SO >
61 inline std::ostream& operator<<( std::ostream& os, const Matrix<MT,SO>& m );
76 inline std::ostream& operator<<( std::ostream& os, const Matrix<MT,SO>& m )
80 for(
size_t i=0UL; i<tmp.rows(); ++i ) {
82 for(
size_t j=0UL; j<tmp.columns(); ++j ) {
83 os << std::setw(12) << tmp(i,j) <<
" ";
Header file for auxiliary alias declarations.
typename T::CompositeType CompositeType_
Alias declaration for nested CompositeType type definitions.The CompositeType_ alias declaration prov...
Definition: Aliases.h:83
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the Matrix base class.