dmvnorm
dmvnorm_wrapper
is a function that evaluates the bivariate normal
distribution in a matrix of evaluation points, with local parameters.
dmvnorm_wrapper(eval_points, mu_1 = rep(0, nrow(eval_points)),
mu_2 = rep(0, nrow(eval_points)), sig_1 = rep(1, nrow(eval_points)),
sig_2 = rep(1, nrow(eval_points)), rho = rep(0, nrow(eval_points)),
run_checks = TRUE)
A kx2
matrix with evaluation points
The first expectation vector
The second expectation vector
The first standard deviation vector
The second standard deviation vector
The correlation vector
Run sanity check for the arguments
This functions takes as arguments a matrix of grid points, and vectors of parameter values, and returns the bivariate normal density at these points, with these parameter values.