Fortran Coder

标题: 子程序能作为参数传递吗? [打印本页]

作者: shrine    时间: 2017-7-8 10:36
标题: 子程序能作为参数传递吗?
本帖最后由 shrine 于 2017-7-8 10:40 编辑

最近在看最小二乘法minpack,简洁起见,过多参数用省略号表示,fcn是需要自己提供的
subroutine lmder(fcn,......wa4)
      integer ....      
      double .....


      call fcn(m,n,x,fvec,fjac,ldfjac,iflag)
end
      既然要call fcn,那肯定是subroutine,而不是function,但是subroutine怎么能作为参数传递呢?


作者: vvt    时间: 2017-7-8 19:55
方法1(假设 fcn 返回 real 类型):
[Fortran] 纯文本查看 复制代码
Subroutine Imder( fcn , ... )
Real , external :: fcn
y = fcn(x)

方法2:
[Fortran] 纯文本查看 复制代码
Subroutine Imder( fcn , ... )
Interface
  real function fcn( x )
    real :: x
  end function fcn
End Interface
y = fcn(x)


作者: chiangtp    时间: 2017-8-12 13:22
蒐集來的資料, 敬請參考:

subprogram-as-argument.pdf

714.17 KB, 下载次数: 15






欢迎光临 Fortran Coder (http://bbs.fcode.cn/) Powered by Discuz! X3.2