#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 1197 of file util.cpp.
Referenced by EMAN::Util::getBaldwinGridWeights().
01198 { 01199 cout << message << endl; 01200 for(int i = 0; i < n; ++i ){ 01201 for (int j = 0; j < m; ++j ){ 01202 cout << gsl_matrix_get(M,i,j) << "\t"; 01203 } 01204 cout << endl; 01205 } 01206 }
void printvector | ( | gsl_vector * | M, | |
const int | n, | |||
const string & | message = "" | |||
) |
Definition at line 1208 of file util.cpp.
Referenced by EMAN::Util::getBaldwinGridWeights().
01209 { 01210 cout << message << endl; 01211 for(int i = 0; i < n; ++i ){ 01212 cout << gsl_vector_get(M,i) << "\t"; 01213 } 01214 cout << endl; 01215 }