transform.cpp File Reference

#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.


Function Documentation

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

Definition at line 1041 of file transform.cpp.

01041                                                                                          {
01042         cout << "Message is " << message << endl;
01043         for ( unsigned int i = 0; i < r; ++i )
01044         {
01045                 for ( unsigned int j = 0; j < c; ++j )
01046                 {
01047                         cout << gsl_matrix_get(M,i,j) << " ";
01048                 }
01049                 cout << endl;
01050         }
01051 }


Generated on Tue Jul 12 13:47:18 2011 for EMAN2 by  doxygen 1.4.7