代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/208614/15242328
for ex0602.for
PROGRAM ex0602
IMPLICIT NONE
INTEGER limit
PARAMETER(limit=10)
INTEGER counter
INTEGER ans
DATA ans /0/
DO 100, counter=2, limit, 2
100 ans = ans + counter
WRITE(*,*) ans
www.eeworm.com/read/208614/15242334
f90 ex0604.f90
program ex0604
implicit none
integer, parameter :: limit=10 ! 计数器的上限
integer counter ! 计数器
integer :: ans = 0 ! 拿来累加使用
counter = 2 ! 设定计数器初值
do while( counter
www.eeworm.com/read/208614/15242335
f90 zreal.f90
program main
use IMSL
implicit none
integer, parameter :: ITMAX = 100
integer, parameter :: NROOT = 2
real, parameter :: EPS = 1.0E-6
real, parameter :: ERRABS = 1.0E-6
real, para
www.eeworm.com/read/208614/15242336
f90 csint.f90
program main
use IMSL
implicit none
integer, parameter :: NDATA = 25, N = 30
real XDATA(NDATA), FDATA(NDATA)
real BREAK(NDATA), CSCOEF(4,NDATA), X
real, parameter :: xmin = -5.0, xma
www.eeworm.com/read/208614/15242338
f90 ivprk.f90
! IMSL IVPRK范例
! 求解Y'(t)=-0.01*Y(t)
! initial condition Y(0)=2
program main
use IMSL
implicit none
integer, parameter :: MXPARM = 50
integer, parameter :: N = 1
integer IDO, ISTEP, N
www.eeworm.com/read/208614/15242339
f90 bvpfd1.f90
! IMSL BVPFD示范
! 求解y'''-y''+y'-y=0
! 经过y'=y, y2=y', y3=y''代换后会变成First order ODE
! y1'=y2
! y2'=y3
! y3'=y3-y2+y1
! 答案为y1=cos(t), y2=-sin(t), y3=-cos(t)
program main
use IMSL
implicit none
www.eeworm.com/read/208614/15242340
f90 qand.f90
program main
use IMSL
implicit none
real, external :: F
integer, parameter :: N=3
real A(N), B(N)
real, parameter :: ERRABS = 0.0001
real, parameter :: ERRREL = 0.001
integer,
www.eeworm.com/read/208614/15242341
f90 qdagp.f90
program main
use IMSL
implicit none
real, external :: F
real A, B
integer, parameter :: NPTS = 2
real :: POINTS(NPTS) = (/ 1.0, 2.0 /)
real, parameter :: ERRABS = 1E-2
real, pa
www.eeworm.com/read/208614/15242342
f90 twodq.f90
program main
use IMSL
implicit none
real A, B
real, parameter :: ERRABS = 0.001
real, parameter :: ERRREL = 0.001
integer, parameter :: IRULE = 6
real, external :: F,G,H
real :
www.eeworm.com/read/208614/15242343
f90 deriv.f90
program main
use IMSL
implicit none
real, external :: F
integer, parameter :: KORDER = 1
real :: x=0.0
real, parameter :: BGSTEP = 1E-3
real, parameter :: TOL = 1E-3
write(*,*