EMAN2
Functions
transform.cpp File Reference
#include "transform.h"
#include "util.h"
#include "emobject.h"
#include <cctype>
#include <cstring>
#include "symmetry.h"
#include <algorithm>
#include <gsl/gsl_matrix.h>
#include <gsl/gsl_blas.h>
#include <gsl/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)
 

Function Documentation

◆ print_matrix()

void print_matrix ( gsl_matrix *  M,
unsigned int  r,
unsigned int  c,
const string &  message 
)

Definition at line 1167 of file transform.cpp.

1167 {
1168 cout << "Message is " << message << endl;
1169 for ( unsigned int i = 0; i < r; ++i )
1170 {
1171 for ( unsigned int j = 0; j < c; ++j )
1172 {
1173 cout << gsl_matrix_get(M,i,j) << " ";
1174 }
1175 cout << endl;
1176 }
1177}