<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: IMSL Library in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863495#M69976</link>
    <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
cf, are you the same user as "okale"? I'm getting confused as to who is seeing what.&lt;BR /&gt;&lt;BR /&gt;Please try this from the command line - add the switch /watch after %F90FLAGS% and then attach the output (copy and paste to a text file and attach the text file.)&lt;BR /&gt;</description>
    <pubDate>Fri, 06 Feb 2009 21:08:03 GMT</pubDate>
    <dc:creator>Steven_L_Intel1</dc:creator>
    <dc:date>2009-02-06T21:08:03Z</dc:date>
    <item>
      <title>IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863463#M69944</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I have installed the IMSL Library first time on my computer. Now, I try to use it but I could not use. The code I try to compile is below:&lt;BR /&gt;&lt;BR /&gt;PROGRAM MAIN&lt;BR /&gt;&lt;BR /&gt;USE IMSL_LIBRARIES&lt;BR /&gt;IMPLICIT NONE&lt;BR /&gt;INTEGER ISEED, NCAT, NDFEST, NELM&lt;BR /&gt;PARAMETER (ISEED=123457, NCAT=6, NDFEST=0, NELM=1000)&lt;BR /&gt;!&lt;BR /&gt;INTEGER I, IX(NELM), NOUT&lt;BR /&gt;REAL CDF, CHISQ(NCAT+1), COUNTS(NCAT), CUTP(NCAT-1), DF, &amp;amp;&lt;BR /&gt;EXPECT(NCAT), P, RNGE(2), X(NELM)&lt;BR /&gt;EXTERNAL CDF&lt;BR /&gt;!&lt;BR /&gt;DATA RNGE/0.0, 0.0/&lt;BR /&gt;&lt;BR /&gt;DATA CUTP/.5, 1.5, 2.5, 3.5, 4.5/&lt;BR /&gt;!&lt;BR /&gt;CALL RNSET (ISEED)&lt;BR /&gt;! Generate the data&lt;BR /&gt;CALL RNBIN (5, 0.3, IX)&lt;BR /&gt;DO 10 I=1, NELM&lt;BR /&gt;X(I) = IX(I)&lt;BR /&gt;10 CONTINUE&lt;BR /&gt;!&lt;BR /&gt;CALL CHIGF (CDF, NELM, X, NCAT, RNGE, NDFEST, CUTP, P, &amp;amp;&lt;BR /&gt;COUNTS=COUNTS, EXPECT=EXPECT, CHISQ=CHISQ, DF=DF)&lt;BR /&gt;! Print results&lt;BR /&gt;CALL WRRRN ('Counts', COUNTS, 1, NCAT, 1)&lt;BR /&gt;CALL WRRRN ('Expect', EXPECT, 1, NCAT, 1)&lt;BR /&gt;CALL WRRRN ('Contributions to Chi-squared', CHISQ, 1, NCAT, 1)&lt;BR /&gt;CALL UMACH (2, NOUT)&lt;BR /&gt;WRITE (NOUT,99999) CHISQ(NCAT+1), P, DF&lt;BR /&gt;99999 FORMAT (///'0Chi-squared ', F8.4, /, ' P-value ' &amp;amp;&lt;BR /&gt;, F8.4, /, ' Degrees of freedom', F8.4)&lt;BR /&gt;END&lt;BR /&gt;!&lt;BR /&gt;REAL FUNCTION CDF (Y)&lt;BR /&gt;REAL Y&lt;BR /&gt;!&lt;BR /&gt;INTEGER I&lt;BR /&gt;REAL BINDF&lt;BR /&gt;EXTERNAL BINDF&lt;BR /&gt;!&lt;BR /&gt;I = Y&lt;BR /&gt;CDF = BINDF(I,5,0.3)&lt;BR /&gt;RETURN&lt;BR /&gt;END&lt;BR /&gt;&lt;BR /&gt;The compiler gives an error message at 2nd line that "error #7002: Error in opening the compiled module file. Check INCLUDE paths. [IMSL_LIBRARIES]". Is the problem related to install IMSL Library on my computer?</description>
      <pubDate>Mon, 19 Jan 2009 20:16:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863463#M69944</guid>
      <dc:creator>okale1</dc:creator>
      <dc:date>2009-01-19T20:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: fortran dll with visual basic</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863464#M69945</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;EM&gt;I'm starting to work with intel VF 11.0.066 and I tried to use the IMSL by calling "use numerical_libraries", but is not that simple. I don't know if you can help me on this. This is very basic: how to add imsl functionality to IVF?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/EM&gt;&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jan 2009 19:57:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863464#M69945</guid>
      <dc:creator>juliobp</dc:creator>
      <dc:date>2009-01-19T19:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863465#M69946</link>
      <description>Please read &lt;A href="http://software.intel.com/en-us/articles/installing-and-using-the-imsl-libraries/"&gt;Installing and using the IMSL* Libraries&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If after reading that you have further questions, feel free to ask here.&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jan 2009 20:57:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863465#M69946</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-01-19T20:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863466#M69947</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
See my post above.&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jan 2009 20:59:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863466#M69947</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-01-19T20:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863467#M69948</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;See my post above.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I'm working with the following file (is the traditional foxes vs. rabits problem)&lt;BR /&gt;&lt;BR /&gt;PROGRAM ZORROSVSCONEJOS&lt;BR /&gt;USE IMSL_LIBRARIES&lt;BR /&gt;INTEGER, PARAMETER :: MXPARM = 50, N = 2&lt;BR /&gt;INTEGER :: IDO, ISTEP&lt;BR /&gt;REAL :: PARAM(MXPARM), T, TEND, TOL, Y(N)&lt;BR /&gt;EXTERNAL :: FCN&lt;BR /&gt;&lt;BR /&gt;!! initial conditions&lt;BR /&gt;T = 0.0&lt;BR /&gt;Y(1) = 1.0&lt;BR /&gt;Y(2) = 3.0&lt;BR /&gt;&lt;BR /&gt;!! tolerance&lt;BR /&gt;TOL = 0.0005&lt;BR /&gt;&lt;BR /&gt;! set parameters to defaults&lt;BR /&gt;CALL SSET (MXPARM, 0.0, PARAM, 1)&lt;BR /&gt;&lt;BR /&gt;PARAM(10) = 1.0&lt;BR /&gt;&lt;BR /&gt;!print header&lt;BR /&gt;WRITE(*,*) 'ISTEP ', TIME ' , 'Y1 ', 'Y2 '&lt;BR /&gt;WRITE(*,*) '==================================='&lt;BR /&gt;&lt;BR /&gt;IDO = 1&lt;BR /&gt;ISTEP = 0&lt;BR /&gt;&lt;BR /&gt;DO WHILE (ISTEP &amp;lt;= 10)&lt;BR /&gt;ISTEP = ISTEP + 1&lt;BR /&gt;TEND = ISTEP&lt;BR /&gt;CALL IVPRK (IDO, N, FCN, T, TEND, TOL, PARAM, Y)&lt;BR /&gt;IF (ISTEP &amp;lt;= 10) THEN &lt;BR /&gt;WRITE (*,*) ISTEP, T, Y&lt;BR /&gt;END IF&lt;BR /&gt;END DO&lt;BR /&gt;IF (ISTEP == 10) THEN &lt;BR /&gt;IDO = 3&lt;BR /&gt;END IF&lt;BR /&gt;&lt;BR /&gt;END PROGRAM ZORROSVSCONEJOS&lt;BR /&gt;&lt;BR /&gt;and I got the following error:&lt;BR /&gt;Error 1 error #6285: There is no matching specific subroutine for this generic subroutine call. [IVPRK] C:Documents and SettingsjbaezapMis documentosVisual Studio 2005ProjectsQWin2QWin2Source1.F90 32 &lt;BR /&gt;&lt;BR /&gt;Any advise on this one?&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jan 2009 22:34:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863467#M69948</guid>
      <dc:creator>juliobp</dc:creator>
      <dc:date>2009-01-19T22:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863468#M69949</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Change USE IMSL_LIBRARIES to USE NUMERICAL_LIBRARIES&lt;BR /&gt;&lt;BR /&gt;Your call to IVPRK is using the older "Fortran 77" argument style, but IMSL_LIBRARIES defines the new "Fortran 90" style which has different arguments. You can see the IMSL documentation for IVPRK if you want the details.&lt;BR /&gt;&lt;BR /&gt;USE NUMERICAL_LIBRARIES will declare the older interfaces.&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jan 2009 00:48:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863468#M69949</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-01-20T00:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863469#M69950</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;....&lt;BR /&gt;USE NUMERICAL_LIBRARIES will declare the older interfaces.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;&lt;EM&gt;I did the change and these were the error messages:&lt;BR /&gt;Error 2 error LNK2019: unresolved external symbol _IVPRK referenced in function _MAIN__ Source1.obj &lt;BR /&gt;Error 1 error LNK2019: unresolved external symbol _SSET referenced in function _MAIN__ Source1.obj &lt;BR /&gt;&lt;/EM&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jan 2009 16:56:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863469#M69950</guid>
      <dc:creator>juliobp</dc:creator>
      <dc:date>2009-01-20T16:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863470#M69951</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Add the following lines after the USE NUMERICAL_LIBRARIES&lt;BR /&gt;&lt;BR /&gt;include 'link_fnl_static.h'&lt;BR /&gt;!DEC$ OBJCOMMENT LIB:'libiomp5md.lib'&lt;BR /&gt;&lt;BR /&gt;If you are using the version 10.x IMSL, replace the second line with:&lt;BR /&gt;&lt;BR /&gt;!DEC$ OBJCOMMENT LIB:'libguide.lib'&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jan 2009 17:55:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863470#M69951</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-01-20T17:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863471#M69952</link>
      <description>&lt;DIV style="margin:0px;"&gt;It works nicely! Thanks Steve!&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jan 2009 19:28:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863471#M69952</guid>
      <dc:creator>juliobp</dc:creator>
      <dc:date>2009-01-20T19:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863472#M69953</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Add the following lines after the USE NUMERICAL_LIBRARIES&lt;BR /&gt;&lt;BR /&gt;include 'link_fnl_static.h'&lt;BR /&gt;!DEC$ OBJCOMMENT LIB:'libiomp5md.lib'&lt;BR /&gt;&lt;BR /&gt;If you are using the version 10.x IMSL, replace the second line with:&lt;BR /&gt;&lt;BR /&gt;!DEC$ OBJCOMMENT LIB:'libguide.lib'&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;It works! Thanks Steve!</description>
      <pubDate>Tue, 20 Jan 2009 19:35:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863472#M69953</guid>
      <dc:creator>juliobp</dc:creator>
      <dc:date>2009-01-20T19:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863473#M69954</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Add the following lines after the USE NUMERICAL_LIBRARIES&lt;BR /&gt;&lt;BR /&gt;include 'link_fnl_static.h'&lt;BR /&gt;!DEC$ OBJCOMMENT LIB:'libiomp5md.lib'&lt;BR /&gt;&lt;BR /&gt;If you are using the version 10.x IMSL, replace the second line with:&lt;BR /&gt;&lt;BR /&gt;!DEC$ OBJCOMMENT LIB:'libguide.lib'&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;What should I do for using the fortran 90 call to IMSL?</description>
      <pubDate>Wed, 21 Jan 2009 16:42:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863473#M69954</guid>
      <dc:creator>juliobp</dc:creator>
      <dc:date>2009-01-21T16:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863474#M69955</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;CALL IVPRK (IDO, FCN, T, TEND, Y, TOL=TOL, PARAM=PARAM)&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Jan 2009 16:58:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863474#M69955</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-01-21T16:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863475#M69956</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;CALL IVPRK (IDO, FCN, T, TEND, Y, TOL=TOL, PARAM=PARAM)&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;&lt;EM&gt;Ok, I did some changes to the program to adecuate it to the sample code of the IMSL&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;
&lt;PRE&gt;[cpp]PROGRAM FOXESANDRABITS
USE IMSL_LIBRARIES

INTEGER, PARAMETER :: MXPARM = 50, N = 2
INTEGER            :: IDO, ISTEP
REAL               :: PARAMETERS(MXPARM), T, TEND, TOLERA, Y(N)
EXTERNAL           :: FCN

!! INITIAL CONDITIONS
    T = 0.0
    Y(1) = 1.0
    Y(2) = 3.0
!! TOLERANCE
    TOLERA = 0.0005

! PARAM TO DEFAULT VALUES
    PARAMETERS= 0.E0
! ABSOLUTE ERROR CONTROL 
     PARAMETERS(10) = 1.0
!PRINT HEADER
     WRITE(*,*) 'ISTEP   ', 'TIEMPO   ', 'Y1   ', 'Y2   '
	 WRITE(*,*) '==================================='
	 IDO = 1
     ISTEP = 0
	 DO WHILE (ISTEP &amp;lt;= 10)
	    ISTEP = ISTEP + 1
        TEND = ISTEP
        CALL IVPRK (IDO, FCN, T, TEND, Y, TOL = TOLERA, PARAM = PARAMETERS)
        IF (ISTEP &amp;lt;= 10) THEN  
		        WRITE (*,*) ISTEP, T, Y
		END IF
	 END DO
     IF (ISTEP == 10) THEN 
	     IDO = 3
	 END IF
END PROGRAM FOXESANDRABITS[/cpp]&lt;/PRE&gt;
&lt;BR /&gt;&lt;EM&gt;And the message that appears is:&lt;BR /&gt;&lt;/EM&gt;&lt;BR /&gt;Error 1 error LNK2019: unresolved external symbol _S_IVPRK referenced in function _MAIN__ PRINCIPALZORROSYCONEJOS.obj &lt;BR /&gt;&lt;BR /&gt;What I did wrong?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Jan 2009 19:02:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863475#M69956</guid>
      <dc:creator>juliobp</dc:creator>
      <dc:date>2009-01-21T19:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863476#M69957</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
You left out the include and !DEC$ lines again.&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Jan 2009 19:09:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863476#M69957</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-01-21T19:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863477#M69958</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;You left out the include and !DEC$ lines again.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;So, either the program is F77 or F90 I have to put them? Ok</description>
      <pubDate>Wed, 21 Jan 2009 19:50:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863477#M69958</guid>
      <dc:creator>juliobp</dc:creator>
      <dc:date>2009-01-21T19:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863478#M69959</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Those lines are the easiest way to specify which IMSL library set you are linking with. If you do not specify the libraries another way, you need them, no matter which style of call you use.&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Jan 2009 20:31:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863478#M69959</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-01-21T20:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863479#M69960</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; Those lines are the easiest way to specify which IMSL library set you are linking with. If you do not specify the libraries another way, you need them, no matter which style of call you use.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Steve,&lt;BR /&gt;&lt;BR /&gt;On may laptop, which is still runnig version 10 of the compiler together with Compaq VF and Visual Studio Express I had no problem running the IMSL Validate program. On my office machine which is running version 11 of IMSL and Intel Fortran as well as CVF, Visual Studio.Net 2003 and VC++ the compiler gets confused and when I try to compilie Validate it says: warning #10268 Microsoft compiler version 6 or earlier is not supported. &lt;BR /&gt; &lt;BR /&gt; On both machines, no interpretation of the instructions above or in the basic imsl article results in 'link_fnl_static.h' being read when I try to use the IDE.&lt;BR /&gt; &lt;BR /&gt; christ&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Feb 2009 20:38:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863479#M69960</guid>
      <dc:creator>Christ_F_</dc:creator>
      <dc:date>2009-02-02T20:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863480#M69961</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
christ,&lt;BR /&gt;&lt;BR /&gt;Are you building this from the IDE? Please go into Tools &amp;gt; Options &amp;gt; Intel Fortran &amp;gt; Compilers. Click the ... next to Executable files. Copy the contents and paste it into a reply here. Do the same for Library Files and Executable Files.&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Feb 2009 21:25:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863480#M69961</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-02-02T21:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863481#M69962</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; christ,&lt;BR /&gt;&lt;BR /&gt;Are you building this from the IDE? Please go into Tools &amp;gt; Options &amp;gt; Intel Fortran &amp;gt; Compilers. Click the ... next to Executable files. Copy the contents and paste it into a reply here. Do the same for Library Files and Executable Files.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Steve,&lt;BR /&gt;&lt;BR /&gt;Here is the info:&lt;BR /&gt;&lt;BR /&gt;EXecutables&lt;BR /&gt;&lt;BR /&gt;$(IFortInstallDir)binia32&lt;BR /&gt;$(CommonProgramFiles)IntelShared FilesIa32Bin&lt;BR /&gt;$(VSInstallDir)Common7ide&lt;BR /&gt;$(VCInstallDir)bin&lt;BR /&gt;$(VSInstallDir)Common7Tools&lt;BR /&gt;$(VSInstallDir)Common7Toolsbin&lt;BR /&gt;$(VCInstallDir)PlatformSDKbin&lt;BR /&gt;$(FrameworkSDKDir)bin&lt;BR /&gt;$(FrameworkDir)$(FrameworkVersion)&lt;BR /&gt;$(PATH)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Libraries&lt;BR /&gt;&lt;BR /&gt;$(IFortInstallDir)libia32&lt;BR /&gt;$(VCInstallDir)atlmfclib&lt;BR /&gt;$(VCInstallDir)lib&lt;BR /&gt;$(VCInstallDir)PlatformSDKlib&lt;BR /&gt;$(FrameworkSDKDir)lib&lt;BR /&gt;$c:Program FilesIntelArray Visualizerlib&lt;BR /&gt;$c:Program FilesVNIimslfnl600IA32lib&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;INCLUDES&lt;BR /&gt;&lt;BR /&gt;$(IFortInstallDir)include&lt;BR /&gt;$(IFortInstallDir)includeia32&lt;BR /&gt;$(VCInstallDir)atlmfcinclude&lt;BR /&gt;$(VCInstallDir)include&lt;BR /&gt;$(VCInstallDir)PlatformSDKinclude&lt;BR /&gt;$(FrameworkSDKDir)include&lt;BR /&gt;$c:Program FilesIntelArray Visualizerinclude&lt;BR /&gt;$C:Program FilesVNIimslfnl600IA32includedll&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Lines from my code:&lt;BR /&gt;&lt;BR /&gt; INCLUDE 'link_fnl_static.h'&lt;BR /&gt; !DEC$ OBJCOMMENT LIB:'libiomp5md.lib'&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;christ&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Feb 2009 21:52:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863481#M69962</guid>
      <dc:creator>Christ_F_</dc:creator>
      <dc:date>2009-02-02T21:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: IMSL Library</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863482#M69963</link>
      <description>&lt;DIV style="margin: 0px; height: auto;"&gt;&lt;/DIV&gt;
Please attach (see instructions below) the Buildlog.htm from the Debug or Release folder after you do a Rebuild of the solution and it fails.&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Feb 2009 01:08:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Library/m-p/863482#M69963</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-02-03T01:08:33Z</dc:date>
    </item>
  </channel>
</rss>

