Why dot indexing is not supported for variables of this type using EMD method in MATLAB R2019a version ? What can I do?
조회 수: 5 (최근 30일)
이전 댓글 표시
code:
[IMF, residual, info] = emd(eeg_signal);
imf_count = max(info.NumIMF);
Dot indexing is not supported for variables of this type.
채택된 답변
KSSV
2023년 11월 23일
It seems IMF is not a sturcutre. Check
class(IMF)
If it is double. Try
max(IMF)
댓글 수: 4
추가 답변 (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!