Advertisement
Guest User

Untitled

a guest
Sep 4th, 2014
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | None | 0 0
  1. typedef struct {
  2.     double real;
  3.     double imag;
  4. } MKL_Complex16;
  5.  
  6. typedef int MKL_INT;
  7.  
  8. #define LAPACK_ROW_MAJOR               101
  9. #define LAPACK_COL_MAJOR               102
  10.  
  11. MKL_INT LAPACKE_zheev(MKL_INT matrix_order, char jobz, char uplo, MKL_INT n, MKL_Complex16* a, MKL_INT lda, double* w );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement