How to do whitening on the given matrix?

23 ビュー (過去 30 日間)
Darsana P M
Darsana P M 2017 年 7 月 9 日
回答済み: Kenta 2020 年 4 月 14 日
X = rand(100,20); % 100 instance with 20 features
N= size(X,2);
M=size(X,1);
meanX=mean(X,2);
Xm=X-meanX*ones(1,N);
C= ( Xm*Xm')/N;
[U D]=eig(C);
How to whiten this above matrix??
  2 件のコメント
Darsana P M
Darsana P M 2017 年 7 月 25 日
How will i do it without using function?

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

回答 (1 件)

Kenta
Kenta 2020 年 4 月 14 日

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by