Visualizing SVD/PCA and applying to new data
显示 更早的评论
I have an SVD for a data set as U S V'. My data are images, but my questions will be general.
I know how to reduce the rank of the original data by zeroing out small singular values and computing U*S*V', but:
- I want to isolate one dimension of variance, say, the one corresponding to the n th largest eigenvalue. This should be some basis vector, right? How do I get that basis vector? I thought it would be the n th column of U*S, but it's not.
- How do I fit some new data that wasn't in the original set to the SVD's bases?
Thanks in advance.
回答(1 个)
Chaman Sabharawal
2017-6-11
0 个投票
Assuming your data matrix A is observation vs arrtibutes. You are reducing attrubutes. Both ways reduction standard A= USV^T or AV=US Reducing it on attributes only you get A reduced to AV. For Reducing on one dimension replace V with a desired direction vector. I hope this is what you are looking for. Chaman
类别
在 帮助中心 和 File Exchange 中查找有关 Dimensionality Reduction and Feature Extraction 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!