#include "transform.h"
#include "util.h"
#include "emobject.h"
#include <cctype>
#include <cstring>
#include "symmetry.h"
#include <algorithm>
#include <gsl_matrix.h>
#include <gsl_blas.h>
#include <gsl_linalg.h>
#include <ostream>
Include dependency graph for transform.cpp:
Go to the source code of this file.
Functions | |
void | print_matrix (gsl_matrix *M, unsigned int r, unsigned int c, const string &message) |
|
Definition at line 977 of file transform.cpp. 00977 { 00978 cout << "Message is " << message << endl; 00979 for ( unsigned int i = 0; i < r; ++i ) 00980 { 00981 for ( unsigned int j = 0; j < c; ++j ) 00982 { 00983 cout << gsl_matrix_get(M,i,j) << " "; 00984 } 00985 cout << endl; 00986 } 00987 }
|