how to generate a vector of uncorrelated random varaibles

Hi all, I like to generate a vector of uncorrelated random variables in matlab? is anyone have some suggestion to me? Thanks

 採用された回答

Oleg Komarov
Oleg Komarov 2012 年 2 月 6 日

0 投票

Any distribution centered on 0 will yield uncorrelated vectors as long as you have enough observations:
v = rand(1e5,2);
corr(v)

2 件のコメント

David Zhang
David Zhang 2012 年 2 月 6 日
Hi Oleg, what is the principle underlying this conclusion?
what i like to get is: RVs=[a1, a2, a3, a4], a1...a5 are mutually uncorrelated, how to simulate the samples of this vector.
thanks again.
Tom Lane
Tom Lane 2012 年 2 月 6 日
Most MATLAB random number generators (rand, randn, others) will generate arrays in which the columns are theoretically uncorrelated. That is, any sample correlation between them is just random. Only a few functions (mvnrnd) generate data with theoretical correlation.
If you need exactly zero sample correlation, then you'll probably have to impose that yourself. That will make the samples no longer independent, though.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDescriptive Statistics and Insights についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by