Skip to content

Instantly share code, notes, and snippets.

@OpenGamma-Blog
Created May 29, 2012 12:29
Show Gist options
  • Save OpenGamma-Blog/2828153 to your computer and use it in GitHub Desktop.
Save OpenGamma-Blog/2828153 to your computer and use it in GitHub Desktop.
Accessing Native Maths Libraries 1
#define DGEMV_F77 F77_FUNC(dgemv,DGEMV)
#ifdef __cplusplus
extern "C"
#endif
void DGEMV_F77(char* trans, int* m, int* n, double* alpha, double* a, int* lda, double* x, int* incx, double* beta, double* y, int* incy);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment