Displaying 2 results from an estimated 2 matches for "cumy".
Did you mean:
cumm
2006 Jul 10
4
yum dovecot fail
Hello CentOS,
anyone can help me?
i'm trying to install dovecot on my CentOS
[root at cumi ~]# yum install dovecot --noplugins
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Parsing package install arguments
Nothing to do
[root at cumi ~]#
anyone has an idea?
since i already search dovecot, and there is a dovecot package
[root at cumi ~]#
2001 May 14
0
followup: lookup function for density(...) objects
...\"s\" for spline fit using data points\n\n")
}
n <- length(density.obj$x)
dx <- density.obj$x[2:n] - density.obj$x[1:(n-1)]
x <- rep(NA, length(p))
# midpoints
cumx <- (density.obj$x[2:n] + density.obj$x[1:(n-1)]) / 2
# numerical integration
cumy <- cumsum((density.obj$y[2:n] + density.obj$y[1:(n-1)]) / 2 * dx)
if(interp == "l")
{
Fx <- approxfun(cumy, cumx) # linear interpolation function
x <- Fx(p) # the variates corresponding to p's
}
else if(interp == "s")
{
Fx &...