Created
May 29, 2012 12:29
-
-
Save OpenGamma-Blog/2828153 to your computer and use it in GitHub Desktop.
Accessing Native Maths Libraries 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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