Calculating entropy of each band of EEG data after wavelet decomposition
1 回表示 (過去 30 日間)
古いコメントを表示
I have calculated entropy after wavelet decomposition.thus I have all five subbands with their entropy values .DO i need to add all entropies ofeach band in order them to fed the feature in the classifier.
0 件のコメント
回答 (1 件)
Samhitha
2025 年 7 月 3 日
After wavelet decomposition and calculating the entropy of each sub band, it is important not to simply sum the entropy values into a single feature for the classifier. Each subband, such as the approximation and detail bands (LL, LH, HL, HH), provides distinct information about the signal or image at different frequency ranges and orientations. Combining these entropies into one value would cause a loss of valuable and discriminative information. A better approach is to form a feature vector where each element represents the entropy of a specific subband.
For example, [ELL,ELH,EHL,EHH,… ], depending on the number of subbands. This feature vector can then be fed into the classifier, allowing it to effectively learn patterns from the individual contributions of each subband and improve classification performance.
For more details, look into the following documentation:
Hope this helps!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で EEG/MEG/ECoG についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!