Displaying 1 result from an estimated 1 matches for "uorl".
Did you mean:
rorl
2009 Sep 04
1
calling Lapack and BLAS routines from C
...uble *y, double *result){
double one=1.0; double zero =0.0;
char *transa="N"; char *transb="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