How to fix this problem in the EMD method for artifact removing from contaminated EEG signal?

1 回表示 (過去 30 日間)
Komal
Komal 2023 年 11 月 18 日
コメント済み: Taylor 2023 年 11 月 30 日
[IMF, residual, info] = emd(eeg_signal);
imf_count = max(info.NumIMF); ///In here, problem have arisen.
figure;
for i=1:imf_count
subplot(6,2,i)
plot(IMF(:,i))
title("IMF"+i);
end
subplot(6,2,imf_count+1)
plot(residual)
title("Residue");
problem:
Dot indexing is not supported for variables of this type.
imf_count = max(info.NumIMF);
  1 件のコメント
Taylor
Taylor 2023 年 11 月 30 日
What does "class(info)" return? "info" should be a structure (based on the documentation for "emd"), but the error message implies that it is not.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeEEG/MEG/ECoG についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by