| 
 | 
6#
 
 
 楼主 |
发表于 2015-4-11 18:00:08
|
只看该作者
 
 
 
 本帖最后由 lwq1834515 于 2015-4-11 18:28 编辑  
 
我在配置的时候出现了这样的错误: 
Error        1         error #6866: Dotted string neither a defined operator nor a structure component   [IX]         
Error        2         Compilation Aborted (code 1)         
这是代码: 
                                                                                                                                                                                                                               
program main 
 
  include 'link_fnl_shared.h'  
  use numerical_libraries 
  implicit none 
 
  real::a(2,2)=(/1,2,12,3/) 
  real::b(2,2)=(/2,1,3,4/) 
  real::c(2,2) 
   
  c=a .ix.b 
  write(*,*) c 
  
  stop 
end program main 
 
如果把 use numerical_libraries改成use imsl_libraries,就出现这样的错误: 
Error        1        Compilation Aborted (code 1)         
 
只有这一个。 
 
是不是我配置的不对? 
 
 |   
 
 
 
 |