- PCA is widely used for dimensionality reduction. In MATLAB, you can use the built-in pca function. Suppose your MFCC features are stored in a matrix called mfccFeatures, where each row corresponds to an audio sample and each column to an MFCC coefficient.
- WPCA is a variant of PCA where each sample can be assigned a weight, which is useful if you want certain samples to have more influence on the resulting components. While MATLAB does not have a built-in wpca function, you can implement it by weighting your centered data before applying PCA.
PCA and WPCA for dimentionality reduction after Feature Extraction in speaker recognition system
조회 수: 3 (최근 30일)
이전 댓글 표시
hi all,
i want to use dimentionality reduction after feature extraction (MFCC) using PCA and WPCA. can some one give me the code for both
help is appreciated
-Shaikha
댓글 수: 0
답변 (1개)
Aditya
2025년 7월 22일
Hi Shaikha,
After extracting MFCC features, it's common to apply dimensionality reduction techniques such as PCA (Principal Component Analysis) and WPCA (Weighted Principal Component Analysis) to reduce the feature space and possibly improve classification or clustering performance.
Documentation link : https://in.mathworks.com/help/stats/pca.html?requestedDomain=
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!