comparison toolboxes/FullBNT-1.0.7/KPMstats/sample_gaussian.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 function M = sample_gaussian(mu, Sigma, N)
2 % SAMPLE_GAUSSIAN Draw N random row vectors from a Gaussian distribution
3 % samples = sample_gaussian(mean, cov, N)
4
5 if nargin==2
6 N = 1;
7 end
8
9 % If Y = CX, Var(Y) = C Var(X) C'.
10 % So if Var(X)=I, and we want Var(Y)=Sigma, we need to find C. s.t. Sigma = C C'.
11 % Since Sigma is psd, we have Sigma = U D U' = (U D^0.5) (D'^0.5 U').
12
13 mu = mu(:);
14 n=length(mu);
15 [U,D,V] = svd(Sigma);
16 M = randn(n,N);
17 M = (U*sqrt(D))*M + mu*ones(1,N); % transform each column
18 M = M';
19