Quantcast
Channel: Recent posts
Viewing all articles
Browse latest Browse all 415

Error messagge when using IMSL libraries

$
0
0

I have recently purchased a licence for Intel fortran XE composer edition  with IMSL libraries. I was trying to write a simple code for  practising with the use of  IMSL libraries. I report below the code:

program prova

use D_LINRG_INT

integer m,i
parameter (m=2)
double precision a(m,m),ainv(m,m)

a(1,1) = 1.0d0
a(1,2) = 2.0d0
a(2,1) = 3.0d0
a(2,2) = 4.0d0

25 format(2(1X,F7.4))  
! Computing the inverse of A  using the IMSL library subroutine
call D_LINRG(a,ainv)

print*, 'A inverse is:'
do i = 1,m
    print 25, ainv(i,:)
end do
end program

when iI try to build the project ( I have visual studio 2015) I get the following error messagge:

error #7002: Error in opening the compiled module file.  Check INCLUDE paths.   [D_LINRG_INT]

Can anybody help me solve this problem?


Viewing all articles
Browse latest Browse all 415

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>