Displaying 1 result from an estimated 1 matches for "hitczenko".
2009 Sep 04
1
calling Lapack and BLAS routines from C
...ansb="N";
F77_CALL(dgemm)
(transa,transb,dim,dim,dim,&one,x,dim,y,dim,&zero,result,dim);
}
// FUNCTION CALLING LAPACK
void funct4(double *x, int *dim, double *result){
char *UorL="L";
int info=0;
F77_CALL(dpotrf)(UorL,dim,x,dim, &info);
}
Best,
Marcin Hitczenko