#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) |
Transform | EMAN::operator * (const Transform &M2, const Transform &M1) |
Matrix times Matrix, a pure mathematical operation. |
void print_matrix | ( | gsl_matrix * | M, | |
unsigned int | r, | |||
unsigned int | c, | |||
const string & | message | |||
) |
Definition at line 1108 of file transform.cpp.
01108 { 01109 cout << "Message is " << message << endl; 01110 for ( unsigned int i = 0; i < r; ++i ) 01111 { 01112 for ( unsigned int j = 0; j < c; ++j ) 01113 { 01114 cout << gsl_matrix_get(M,i,j) << " "; 01115 } 01116 cout << endl; 01117 } 01118 }