search for: integrationcfun

Displaying 1 result from an estimated 1 matches for "integrationcfun".

2013 Apr 09
1
Solving an integral in R gives the error “The integral is probably divergent”
...hat integral. The equation that I am trying to solve is as follows: $$ C_m = \frac{{abs{x}}e^{2x}}{\pi^{1/2}}\int_0^t t^{-3/2}e^{-x^2/t-t}dt $$ [image: enter image description here] The code that I am using is as follows: a <- seq(from=-10, by=0.5,length=100) ## Create a function to compute integrationCfun <- function(XX, upper){ integrand <- function(x)x^(-0.5)*exp((-XX^2/x)-x) integrated <- integrate(integrand, lower=0, upper=upper)$value (final <- abs(XX)*pi^(-0.5)*exp(2*XX)*integrated) } b<- sapply(a, Cfun, upper=1) The error that I am getting is as follows: Error in inte...