1
我對R很新,我試圖用de deSolve包來解決一個微分方程組。R包deSolve:錯誤checkFunc
我總共有10000次的時間步數,每100次的步數我必須改變變量的值。 我試過代碼給我下面的錯誤:
Error in checkFunc(Func2, times, y, rho) :
The number of derivatives returned by func() (2) must equal the length of the initial conditions vector (3)
我不太肯定這個錯誤的來源。 這裏是我到目前爲止的代碼:
library(deSolve)
#--------variables and parameter--------------------------
parameters <- c(up = 0.0001, hm = 0.1, hp = 0,889, mm = 0.1 , nt = 100)
yini <- c(u = 1, m = 0.001, h = 0.001)
times <- seq(0,100, by=0.1)
out<- NULL
#--------functions---------------------------------------
DiffU <- function(t, yini, parameters){
with(as.list(c(yini, parameters)),{
#functions
du <- -(up*u) + hm*h + (1/2*nt)*h
dm <- hp*h - mm*m - (1/nt)*m
# return functions
list(c(du, dm))
})
}
#---------------------------------------------
repeat{
out<- rbind(out, ode(yini, times, DiffU, parameters))
yini<-c(u = u+0.5*h, m = 0.001, h = m+0.5*h)
x<- x+1
if (x==100){
break
}
}
你有什麼建議擺脫錯誤的或改進的代碼? 非常感謝!