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!