matrix.cxx File Reference

#include "gslobj.hxx"
#include <string>
#include <gsl/gsl_blas.h>
#include <gsl/gsl_linalg.h>
Include dependency graph for matrix.cxx:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const gslobj_matrix &m)

Function Documentation

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 }


Generated on 18 Mar 2010 for creaMaracasVisu_lib by  doxygen 1.6.1