Effacer les filtres
Effacer les filtres

How to do whitening on the given matrix?

11 vues (au cours des 30 derniers jours)
Darsana P M
Darsana P M le 9 Juil 2017
Réponse apportée : Kenta le 14 Avr 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??
  2 commentaires
Darsana P M
Darsana P M le 25 Juil 2017
How will i do it without using function?

Connectez-vous pour commenter.

Réponses (1)

Kenta
Kenta le 14 Avr 2020

Catégories

En savoir plus sur Fluid Dynamics dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by