How to plot bivariate Gaussian density function in Numpy and Matplotlib using a given mean and covariance matrix? It could be a surface or contour plot. I want a generic solution using mean vector and covariance matrix which doesn’t involve individual Sigmas.
mean, cov, n_samples = np.array([0.,0.]), np.array([[1.0,0.5],[0.5,1.0]]), 100
Thanks,
@Aso.agile
Here is my try:
What I expect (and want) is something similar to follow: