MATLAB Kernel PCA: PCA with training data , projection of new data
Vous suivez désormais cette soumission
- Les mises à jour seront visibles dans votre flux de contenu suivi
- Selon vos préférences en matière de communication il est possible que vous receviez des e-mails
KernelPca.m is a MATLAB class file that enables you to do the following three things with a very short code.
1.fitting a kernel pca model with training-data with the three kernel functions (gaussian, polynomial, linear) (demo.m)
2.projection of new data with the fitted pca model (demo.m)
3.confirming the contribution ratio (demo2.m)
See the github page for more detail.
https://github.com/kitayama1234/MATLAB-Kernel-PCA
[Example usage]
% There are a training dataset 'X' and testing dataset 'Xtest'
% train pca model with 'X'
kpca = KernelPca(X, 'gaussian', 'gamma', 2.5, 'AutoScale', true);
% project 'X' using the fitted model
projected_X = project(kpca, X, 2);
% project 'Xtest' using the fitted model
projected_Xtest = project(kpca, Xtest, 2);
Citation pour cette source
Masaki Kitayama (2026). MATLAB-Kernel-PCA (https://github.com/kitayama1234/MATLAB-Kernel-PCA), GitHub. Extrait(e) le .
Catégories
En savoir plus sur Dimensionality Reduction and Feature Extraction dans Help Center et MATLAB Answers
Informations générales
- Version 2.0.1 (59,8 ko)
-
Afficher la licence sur GitHub
Compatibilité avec les versions de MATLAB
- Compatible avec toutes les versions jusqu’à R2019a
Plateformes compatibles
- Windows
- macOS
- Linux
Les versions qui utilisent la branche GitHub par défaut ne peuvent pas être téléchargées
| Version | Publié le | Notes de version | Action |
|---|---|---|---|
| 2.0.1 | edit description |
||
| 2.0.0 | add the propertie of contribution ratio |
||
| 1.0.2 | edit |
||
| 1.0.1 | edit |
||
| 1.0.0 |
