search for: jobvt

Displaying 1 result from an estimated 1 matches for "jobvt".

Did you mean: jobst
2004 Aug 11
0
Calling Lapack From C code
Hello List, I have create a small package with C code. In the C code, I call Fortran routines of Lapack. Here is the call in the C function: F77_CALL(dgesvd)(&jobu, &jobvt,&size, &size,A, &size, D,U,&size,V,&size,&work1, &lwork,&error); In the src directory, I have a Makevars File with: PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) And in the beginning of C code, I include the following lines #include <stddef.h> #include &...