Displaying 6 results from an estimated 6 matches for "cuhr".
Did you mean:
cur
2011 Oct 05
2
cuhre usage ?? multidimensional integration
my=function(x){
len=1
for(i in 1:len){
y[i]=x[i]
}
g=1
w=NULL
t=NULL
for(i in 1:len)w[i]=x[i+len]
for(i in 1:len)t[i]=x[i+2*len]
for(i in 1:len)g=g*dnorm(y[i])*dnorm(w[i])*dnorm(z[i])
return(g)
}
cuhre(6,1,my,rep(-100,6),rep(100,6))
Error in crff(match.call(), integrand, "cuhre", libargs, ...) :
Additional argument not expected in the integrand function
function change to my=function(x,g,i,j)
result is not right. it should be 1, but it turns out to be 0.039...
How can I make thi...
2011 Mar 29
5
Integration with variable bounds
...here some of the variables are in the bounds of the other
variables. I was trying to use R2Cuba function but cannot set the upper and
lower bounds. My code so far is :
int <- function(y){
u2 = y[1]
z2 = y[2]
u1 =y[3]
z1 = y[4]
ff <- u1*(z1-u1)*u2*(z2-u2)*exp(-0.027*(12-z2))
return(ff)
}
cuhre(4,1,int,rel.tol=1e-3,lower=c(y[4],y[4],4,4),upper=c(12,y[4],12,y[2]),abs.tol=
1e-12,flags= list(verbose=2, final=0))
I know that code is wrong but it shows that variables are in both the upper
and lower bounds.
Thanks.
Dustin Long
UNC-Chapel Hill
--
View this message in context: http://r.7896...
2011 Dec 06
2
configuring a package for own personal needs
Hi All,
There is a function in package "R2Cuba" called Cuhre that I need to use. It
keeps spitting out a new-line which I really dont want it to do. So I was
wondering what is the best way of configuring the package. I tried copying
and pasting the code into Cuhre2 and getting rid of the newline command BUT
that didn't work since it seems to have some p...
2011 Dec 02
1
R2Cuba package, failed with message ‘Dimension out of range’
Hi All,
I get the message failed with message ‘Dimension out of range’ when using
cuhre in package R2Cuba. Does anyone know what this mean? Or would I need
to email the package author?
The funny thing is it does give a result and comparing it to
"adaptIntegrate" in package cubature, the two numbers are very close.
Thanks,
Sachin
[[alternative HTML version deleted]]
2012 Mar 13
1
Two dimensional integration
Dear R Members,
I want to know a fast R function to do multidimensional integration. I used
the function 'cuhre' in R2cuba library. But it takes painful time to get the
answer.
I would be thankful if anyone could help me out to solve this problem
Thanks
Niroshan
--
View this message in context: http://r.789695.n4.nabble.com/Two-dimensional-integration-tp4468282p4468282.html
Sent from the R help...
2012 May 23
0
Error from using adaptIntegrate within a function that is then integrated
...e an issue that adaptIntegrate first outputs a list and
then because I use adaptIntegrate(...)$integral I get the real number I
desire. Is there some way around that list format? Is that likely to cause
a problem in the integration?
Or any other deterministic multidimensional integrators? (I tried cuhre
from R2Cuba but it would give different results when I repeated the same
integration so I don´t want to use that).
Thanks for any suggestions!
[[alternative HTML version deleted]]