-
-
Notifications
You must be signed in to change notification settings - Fork 43
Principal Component Analysis
Sambit Paul edited this page Dec 2, 2023
·
6 revisions
We apply the Principal Component Analysis on multi-dimensional data to reduce the dimensions while retaining maximal information by determining which features have maximum variance.
PCA p1 = new PCA(raw_signal, 1); // raw_signal of type double, output will be of 1 dimension
p1.fit();
double[][] output = p1.transform();
Wiki
-
Filters
- IIR Filters
- FIR Filters
- Kernel-Based Filter
- Adaptive Filters
-
Signals
-
Peak Detection
-
Transformations
-
Speech
-
Windowing