Azzera filtri
Azzera filtri

How to do whitening on the given matrix?

11 visualizzazioni (ultimi 30 giorni)
Darsana P M
Darsana P M il 9 Lug 2017
Risposto: Kenta il 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??

Risposte (1)

Kenta
Kenta il 14 Apr 2020

Categorie

Scopri di più su Fluid Dynamics in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by