#include "gslobj.hxx"#include <string>#include <gsl/gsl_blas.h>#include <gsl/gsl_linalg.h>

Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &os, const gslobj_matrix &m) |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const gslobj_matrix & | m | |||
| ) |
Definition at line 24 of file matrix.cxx.
00025 { 00026 for( int i = 0; i < m.size1( ); i++ ) { 00027 00028 for( int j = 0; j < m.size2( ); j++ ) 00029 os << m( i, j ) << " "; 00030 os << std::endl; 00031 00032 } // rof 00033 return( os ); 00034 }
1.5.3