MATLAB-Kernel-PCA

バージョン 2.0.1 (59.8 KB) 作成者: Masaki Kitayama
MATLAB Kernel PCA: PCA with training data , projection of new data
ダウンロード: 1.2K
更新 2021/11/30

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);

引用

Masaki Kitayama (2024). MATLAB-Kernel-PCA (https://github.com/kitayama1234/MATLAB-Kernel-PCA), GitHub. 取得済み .

MATLAB リリースの互換性
作成: R2017a
R2019a 以前のすべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersDimensionality Reduction and Feature Extraction についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

GitHub の既定のブランチを使用するバージョンはダウンロードできません

バージョン 公開済み リリース ノート
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

この GitHub アドオンでの問題を表示または報告するには、GitHub リポジトリにアクセスしてください。
この GitHub アドオンでの問題を表示または報告するには、GitHub リポジトリにアクセスしてください。