#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="") |
void printmatrix | ( | gsl_matrix * | M, | |
const int | n, | |||
const int | m, | |||
const string & | message = "" | |||
) |
Definition at line 1140 of file util.cpp.
Referenced by EMAN::Util::getBaldwinGridWeights().
01141 { 01142 cout << message << endl; 01143 for(int i = 0; i < n; ++i ){ 01144 for (int j = 0; j < m; ++j ){ 01145 cout << gsl_matrix_get(M,i,j) << "\t"; 01146 } 01147 cout << endl; 01148 } 01149 }
void printvector | ( | gsl_vector * | M, | |
const int | n, | |||
const string & | message = "" | |||
) |
Definition at line 1151 of file util.cpp.
Referenced by EMAN::Util::getBaldwinGridWeights().
01152 { 01153 cout << message << endl; 01154 for(int i = 0; i < n; ++i ){ 01155 cout << gsl_vector_get(M,i) << "\t"; 01156 } 01157 cout << endl; 01158 }