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!