Hi thr
I am struggling to make this dgees_ function work while working in C with CLAPACK.
/* Subroutine int dgees_(char *jobvs, char *sort, L_fp select, integer *n,
doublereal *a, integer *lda, integer *sdim, doublereal *wr,
doublereal *wi, doublereal *vs, integer *ldvs, doublereal *work,
integer *lwork, logical *bwork, integer *info);
*/
2 of the inputs to the function are logical, I dont know how to give logical variable and logical array.
For the logical variable (select) .. i tried 1 or 0
for logical array .. i tried int bwork[size]
further I will be glad if someone can post a snippet of their usage of this dgees_().
Also I am getting error : select is not L_fp, am not sure which type is L_fp???
someone please help me..
I am using g++/ gcc... tried both.

