"rtree-c/git@lab.compute.dtu.dk:chrg/rtree.git" did not exist on "9a263465c7c64b414e79e075d3b7ef09898d2b8d"
Newer
Older
# exercise 4.1.4
import numpy as np
# Number of samples
N = 1000
# Mean
mu = np.array([13, 17])
# Covariance matrix
# Generate samples from the Normal distribution
X = np.random.multivariate_normal(mu, S, N)