00001 /* 00002 * Implementation of matrix-exponentiation for complex matrices. 00003 * 00004 * Robert Johansson <robert@riken.jp> 00005 */ 00006 00007 #ifndef GSL_EXPM_COMPLEX_H 00008 #define GSL_EXPM_COMPLEX_H 00009 00010 #include <gsl/gsl_mode.h> 00011 #include <gsl/gsl_matrix.h> 00012 00013 int gsl_linalg_complex_exponential_ss(const gsl_matrix_complex *A, gsl_matrix_complex *eA, gsl_mode_t mode); 00014 00015 #endif