How to do whitening on the given matrix?
Show older comments
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 Comments
Image Analyst
on 9 Jul 2017
Edited: Image Analyst
on 9 Jul 2017
Darsana P M
on 25 Jul 2017
Answers (1)
Kenta
on 14 Apr 2020
0 votes
ZCA whitening is avaliable here.
Categories
Find more on Descriptive Statistics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!