Skip to content
Snippets Groups Projects
ex4_1_4.m 188 B
Newer Older
  • Learn to ignore specific revisions
  • bjje's avatar
    bjje committed
    % exercise 4.1.4
    
    % Number of samples
    N = 1000; 
    
    % Mean
    mu = [13 17];       
    
    % Covariance matrix
    S = [4 3;3 9];  
    
    %% Generate samples from the Normal distribution
    X = mvnrnd(mu, S, N);