How to do whitening on the given matrix?

조회 수: 19 (최근 30일)
Darsana P M
Darsana P M 2017년 7월 9일
답변: Kenta 2020년 4월 14일
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??

답변 (1개)

Kenta
Kenta 2020년 4월 14일

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by