代码如下:
[Fortran] 纯文本查看 复制代码 program main
use numerical_libraries
include 'link_fnl_shared.h'
implicit none
integer,parameter::DP=4
real(kind=DP)::A(3,3)=(/1,3,2, &
1,2,1,&
2,1,3 /)
real(kind=DP)::B(3,1)=(/4,6,6/)
real(kind=DP)::X(3,1)
x= A .x. B
write(*,*)x
end
错误提示如下:
error #6866: Dotted string neither a defined operator nor a structure component [X] |