00001 /* 00002 * A collection of various functions. Printing, saving to file, etc. 00003 * 00004 * 00005 * Robert Johansson <robert@riken.jp> 00006 * 00007 * $Id: misc_8h-source.html,v 1.1.1.1 2008-09-03 09:36:41 rob Exp $ 00008 */ 00009 00010 #ifndef MISC_H 00011 #define MISC_H 00012 00013 #include <gsl/gsl_matrix.h> 00014 00015 void misc_matrix_print(gsl_matrix *m, int n); 00016 void misc_matrix_complex_print(gsl_matrix_complex *m, int n); 00017 void misc_matrix_complex_print_real(gsl_matrix_complex *m, int n); 00018 void misc_matrix_complex_print_imag(gsl_matrix_complex *m, int n); 00019 int misc_file_row_add(const char *filename, const char *row); 00020 00021 00022 #endif 00023