VS+IVF+IMSL internal error解决方案及资源分享

VS+IVF+IMSL internal error解决方案及资源分享

  • 问题
    • 解决方法
    • linear_operators详解
    • 参考经验帖(感谢)
    • IMSL资源分享

问题

搭配:VS2010+IVF2011+IMSL7.0或者VS2013+IVF2013+IMSL7.0。Win10系统。
在程序中使用IMSL出现错误:Complication Aborted. Internal Error.
程序检查无误。
网络上有一些经验帖,例如:
1、卸载360相关软件;
2、IMSL重新安装或者更换版本,检查配置路径信息;
3、IVF重新安装或者更换版本;
4、VS重新安装或者更换版本;
5、修改调用语句(h文件);

尝试之后均失败…

解决方法

IMSL7.0中用use linear_operators这句话是会出错的。
要使用包含在linear_operators这个库中的函数时,要用use+原函数
例如:上面那个例子把use linear_operators改成use operation_xt即可
另外,IMSL7.0引用函数和以前版本不一样的。

实践表明,搭配使用IMSL6.0也会出错。听说是非正版的问题,可以通过重装系统解决。
IMSL5.0没有尝试过。

因此建议直接调用原函数,治本。

linear_operators详解

linear_operators这个文件是这样子的(一看就知道原因了):
module linear_operators

use cond_int
use det_int
use diag_int
use diagonals_int
    use fft_int
    use ifft_int    
    use eye_int
use lin_eig_self_int
use lin_sol_self_int
use norm_int
use operation_i
use operation_ix
use operation_t
use operation_h
use operation_tx
use operation_hx
use operation_x
use operation_xi
use operation_xt
use operation_xh
use orth_int
use rand_int
use rank_int
use svd_int
use unit_int
use eig_int
use chol_int
use isnan_int

end module。

参考经验帖(感谢)

特别感谢 编程爱好者论坛的大佬。
http://bbs.pfan.cn/post-383869.html

IMSL资源分享

IMSL7.0软件安装包(32&64位,带license)
链接:https://pan.baidu.com/s/1H3QIbz2dQWCkX-6hw95u6w
提取码:4krp

IMSL6.0软件安装包(32位,带license)
链接:https://pan.baidu.com/s/1XobQ8figH1s8AuF_JO4wlw
提取码:grz8

IMSL6.0帮助文件
链接:https://pan.baidu.com/s/1GaEqRmF_lUIBXmEHwYNmFA
提取码:x96a

赠人玫瑰,手有余香!
有问题欢迎讨论~
喜欢点赞哦~

你可能感兴趣的:(Fortran,Visual,Studio,IMSL)