util.cpp File Reference

#include "byteorder.h"
#include "emassert.h"
#include "emdata.h"
#include "util.h"
#include "marchingcubes.h"
#include "randnum.h"
#include <fcntl.h>
#include <iomanip>
#include <sstream>
#include <cstring>
#include <sys/types.h>
#include <gsl/gsl_linalg.h>
#include <algorithm>
#include <unistd.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <gsl/gsl_matrix.h>
#include <gsl/gsl_vector.h>

Include dependency graph for util.cpp:

Go to the source code of this file.

Classes

struct  BPKT

Functions

void printmatrix (gsl_matrix *M, const int n, const int m, const string &message="")
void printvector (gsl_vector *M, const int n, const string &message="")


Function Documentation

void printmatrix ( gsl_matrix *  M,
const int  n,
const int  m,
const string &  message = "" 
)

Definition at line 1139 of file util.cpp.

Referenced by EMAN::Util::getBaldwinGridWeights().

01140 {
01141         cout << message << endl;
01142         for(int i = 0; i < n; ++i ){
01143                 for (int j = 0; j < m; ++j ){
01144                         cout << gsl_matrix_get(M,i,j) << "\t";
01145                 }
01146                 cout << endl;
01147         }
01148 }

void printvector ( gsl_vector *  M,
const int  n,
const string &  message = "" 
)

Definition at line 1150 of file util.cpp.

Referenced by EMAN::Util::getBaldwinGridWeights().

01151 {
01152         cout << message << endl;
01153         for(int i = 0; i < n; ++i ){
01154                 cout << gsl_vector_get(M,i) << "\t";
01155         }
01156         cout << endl;
01157 }


Generated on Tue May 25 17:15:05 2010 for EMAN2 by  doxygen 1.4.7