How to generate two kinds of Gaussian data with matlab
Matlab generates random numbers satisfying two-dimensional Gaussian (normal) distribution; Reference is as follows: mu =;; % Mathematical expectation σ =; % covariance matrix r = mvrnnd(μ, σ, 50)% generates 50 samples.