⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 generic_3.f90

📁 linux下编程用 编译软件
💻 F90
字号:
! { dg-do compile }! Testcase from PR 17713module fit_functions  implicit nonecontains  subroutine gauss( x, a, y, dy, ma )    double precision, intent(in)     :: x    double precision, intent(in)     :: a(:)    double precision, intent(out)    :: y    double precision, intent(out)    :: dy(:)    integer,          intent(in)     :: ma  end subroutine gaussend module fit_functionssubroutine mrqcof( x, y, sig, ndata, a, ia, ma )  use fit_functions    implicit none  double precision, intent(in)   :: x(:), y(:), sig(:)  integer,   intent(in)          :: ndata  double precision, intent(in)   :: a(:)  integer,   intent(in)          :: ia(:), ma    integer                           i  double precision                  yan, dyda(ma)    do i = 1, ndata     call gauss( x(i), a, yan, dyda, ma )  end doend subroutine mrqcof

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -