- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I've put together a quick program to figure out how to use the MKL library to calculate the eigenvalues and eigenvectors of a real symmetric matrix A. However, I get the following error message when compiling: "Error 1 error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_LAPACK]". Can anyone help find my mistake? Any help would be appreciated. I have attached the sample project.
-Uly
Here is the code just in case the zip file doesn't upload:
program MKL_SpectralDecompuse mkl_lapack
implicit none
integer n, ldz,lwork,liwork,lda,iwork,info
integer apsize
parameter (n=3)
parameter (lwork=n**2+6*n+1)
parameter (liwork=5*n+3)
parameter (ldz=n)
parameter (iwork=liwork)
parameter (lda=n)character jobz,uplo
double precision ap(n*(n+1)/2),work(iwork)
double precision w(n),z(ldz,n)
data ap /3.0,4.0,6.0,5.0,7.0,8.0/
external dspevd!!set parameters:
jobz='V'
uplo='U'
call dspevd(jobz, uplo, n, ap, w, z, ldz, work,
+ lwork, iwork, liwork, info)
pause
end
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page