?? generator_noise.m
字號(hào):
%%% generator noise random vector from variance matrix%%%
%%
%generator_noise%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% input: W square matrices and simetric matrices,
%%It is assumed that W is a covariance matriz...
%% can be improved ....
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function wt=generator_noise(W,N)
%randn('state',1)
R = chol(W);
nw=size(W,2);
wt=[];
for i=1:N
g=randn(nw,1);
xt=R'*g;
wt=[wt xt];
end
end
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -