【发布时间】:2020-12-03 23:55:36
【问题描述】:
可重现的例子:
a <- 2
b <- 1
tau <- 2
t <- seq(1,3,1)
y <- seq(0,10,1)
G.fun <- function(x,shape,scale){pgamma(x,shape,scale)}
G <- vector(mode = "list", length = length(t))
for (t in 1:length(t)){
G[[t]] <- G.fun(y,shape = a*t, scale = b)
}
如果 x 轴对于所有 y
【问题讨论】: