質問を少し修正しました。
integg <- function(t,a,b,con,s){
u <- ifelse(t - a < 0 ,0, t - a)
l <- ifelse(t - (a+b) < 0,0, t - (a+b))
s * integrate(Vectorize(function(foo,x){x}),lower=l,upper=u,x=con)
}
この方程式は私に積分値を与えます、そして私は3つの配列を持っています:引数'a'、'b'、および's'を表すAs、Bs、およびSs。
配列が次のようになっているとしましょう。
As <- seq(from=50,to=60,by=0.01)
Bs <- seq(from=130,to=140,by=0.01)
Ss <- seq(from=0.0001,to=0.01,by=0.0001)
# con is a constant
con <- 55
# I have 7 values for t and I want to do one at a time,
# so for this example I have t=360
t <- 360
# although I'll want to do also for my other values c(0,20,40,60,120,240)
私の最終的な目標は、これらの配列As、Bs、およびSsのすべての組み合わせを相互にテストすることです。私はアウターを使おうとしていて、その後ループが失敗しました。
# first make one array w/ all possible combinations
all_poss <- outer(As,Bs,paste)
# now include the third array
all_poss <- outer(all_poss,Ss,paste)
head(all_poss)
> [1] "50 130 1e-04" "50.01 130 1e-04" "50.02 130 1e-04"
[4] "50.03 130 1e-04" "50.04 130 1e-04" "50.05 130 1e-04"
### I would have to change my integg function a little bit, to deal w/ the pasted items
integg2 <- function(t,con,all){
a <- strsplit(h,split=' ')[[1]][1]
b <- strsplit(h,split=' ')[[1]][2]
s <- strsplit(h,split=' ')[[1]][3]
u <- ifelse(t - a < 0 ,0, t - a)
l <- ifelse(t - (a+b) < 0,0, t - (a+b))
s * integrate(Vectorize(function(foo,x){x}),lower=l,upper=u,x=con)
}
### I would then need to loop integg2() somehow through my list of all possibilities
all_vals <- sapply(all_poss,integg2)
# I haven't gotten this to work, but i'm not sure this is
# even an efficient way to do what I want
最後に、ある種のループが必要です。これらの配列のすべての可能性を組み合わせる方法について、より良いアイデアがあれば、ループのより効率的な方法を教えてください。
どんな助けでも素晴らしいでしょう!