2

是否可以将复杂数组的实部传递给 Fortran 中的子例程,而无需将实部存储在另一个数组中并传递它?例如,而不是

Z = complex array;

X = real(Z)

call foo(X)

请执行下列操作

Z = complex array

call foo(real(Z))

这给了我一个编译器错误!我正在使用英特尔编译器 ifort。

4

1 回答 1

4

当然,它有效:

module testmod
  implicit none

  integer, parameter :: dp = kind(1.0d0)

contains

  subroutine realsub(array)
    real(dp), intent(in) :: array(:)
    print *, array
  end subroutine realsub

end module testmod


program testprog
  use testmod
  implicit none

  complex(dp) :: array(3)

  array(:) = [ (1.0_dp, 1.0_dp), (3.0_dp, 2.0_dp), (-1.0_dp, 3.0_dp) ]
  call realsub(real(array))

end program testprog
于 2013-02-24T14:34:11.047 回答