what is the better eig function or pcacov and what the different between them
1 view (last 30 days)
Show older comments
Hi ,,,,i want to extract the eigenvector on my dataset.. i know there are any function like (pcacov and eig)..i read is both functions get us the eig vectors my question: can i used both functions or one of them to finding eigenvectors??? i found code :
[n m] = size(A);
AMean = mean(A);
AStd = std(A);
% disp(AMean);
B = (A - repmat(AMean,[n 1])) ./ repmat(AStd,[n 1]);
B = zscore(A);
can i used instead of pcacov??? plz help me
0 Comments
Answers (0)
See Also
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!