can you tell me the logic of the code

5 views (last 30 days)
A=reshape(sig_seg,[14 14]);
C = cov(A);
[VN,DN] = eig(C,'nobalance');
VN=sort(VN(:));
dat=VN.*sig_seg;
features=dat(1:50)

Accepted Answer

Walter Roberson
Walter Roberson on 24 Feb 2014
Looks to me as if it principle component analysis (PCA), which you can research.

More Answers (0)

Categories

Find more on Dimensionality Reduction and Feature Extraction 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!