diff options
author | torset | 2009-01-08 13:15:08 +0000 |
---|---|---|
committer | torset | 2009-01-08 13:15:08 +0000 |
commit | 2e66ffd52a63eb16f138679a3f2d90d4d2c853a9 (patch) | |
tree | ab2bed1fd9000aad0a4c42ef1cd2ba7735b18360 /src/includes/lapack.h | |
parent | 358db0aa0a237174aea50aaebc032091298ca32c (diff) | |
download | scilab2c-2e66ffd52a63eb16f138679a3f2d90d4d2c853a9.tar.gz scilab2c-2e66ffd52a63eb16f138679a3f2d90d4d2c853a9.tar.bz2 scilab2c-2e66ffd52a63eb16f138679a3f2d90d4d2c853a9.zip |
update logm
Diffstat (limited to 'src/includes/lapack.h')
-rw-r--r-- | src/includes/lapack.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/includes/lapack.h b/src/includes/lapack.h index 7e117313..83638568 100644 --- a/src/includes/lapack.h +++ b/src/includes/lapack.h @@ -143,8 +143,10 @@ extern int C2F(daxpy) () ;/* could be transcribe easaly in c */ extern int C2F(dscal) () ;/* could be transcribe easaly in c */ extern int C2F(dasum) () ;/* could be transcribe easaly in c */ -extern int C2F(zgees)(); +/* used in chol */ extern int C2F(dpotrf)(); extern int C2F(zpotrf)(); - +/* used in logm */ +extern int C2F(zgeev)(); +extern int C2F(zheev)(); #endif /* !__LAPACK_H__ */ |