1
0
Fork 0

Implement PCA

This commit is contained in:
neingeist 2014-11-19 20:47:27 +01:00
parent 5f3f65c69c
commit 2b98bd80f0

View file

@ -20,11 +20,9 @@ S = zeros(n);
% number of examples).
%
Sigma = 1/m * X'*X; % covariance matrix
[U, S, V] = svd(Sigma);
% =========================================================================