powered by
The function calculates the value of a bivariate normal distribution with mean 0.
dbinorm (x, S)
a matrix containing the \(x\) values and the \(y\) values in the first and second row respectively. Or it is a list of two vectors.
the covariance matrix; currently only diagonal matrix possible
a vector according to the size of x
x
# NOT RUN { x <- matrix(1:6, nc=2) + 0.0 C <- diag(c(1,2)) dbinorm(x, C) # }
Run the code above in your browser using DataLab