How to do whitening on the given matrix?

21 Ansichten (letzte 30 Tage)
Darsana P M
Darsana P M am 9 Jul. 2017
Beantwortet: Kenta am 14 Apr. 2020
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??

Antworten (1)

Kenta
Kenta am 14 Apr. 2020

Kategorien

Mehr zu Fluid Dynamics finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by