How to do whitening on the given matrix?

23 visualizaciones (últimos 30 días)
Darsana P M
Darsana P M el 9 de Jul. de 2017
Respondida: Kenta el 14 de Abr. de 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??

Respuestas (1)

Kenta
Kenta el 14 de Abr. de 2020

Categorías

Más información sobre Fluid Dynamics en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by