2

在下面的子例程中,我想传递一个名为str. 如果是'poly', 'gaus', 'slat',那么它有一个预定义的动作(fval =见下面的代码)。我想让用户指定一个要使用的函数并将其作为字符串变量传递。

那是 ...

如果str = '3*cos(i*t)',那么我希望有fval等于3*cos(i*t)。如何让 Fortran 将输入的字符串解释为由 Fortran 执行的命令?

subroutine f(fval, i, t, str)
implicit none
integer, parameter :: ikind = selected_int_kind(8)
integer, parameter :: dbl = selected_real_kind(15,307)

integer(kind = ikind) :: i
real(kind = dbl) :: fval, t
character str*100

if(str .eq. 'poly') then
    fval = t**i
elseif(str .eq. 'slat') then
    fval = exp(-i*t)
elseif(str .eq. 'gaus') then
    fval = exp(-i*t*t)
else
    fval = ???
endif

end subroutine
4

2 回答 2

2

你不能。不容易。不过,您可以做两件事:

于 2011-09-06T22:43:50.007 回答
-5

其实真的很简单

subroutine f(fval, i, t, str) ... character(len=*), intent(in) :: str ... end subroutine

诀窍是使用intent(in)修饰符将虚拟字符串参数定义为“未知长度”。

于 2015-07-08T17:17:19.237 回答