フィルターのクリア

EMD giving me error: "ERROR : number of arguments should be as 5"

4 ビュー (過去 30 日間)
Larissa Perez
Larissa Perez 2020 年 3 月 13 日
編集済み: Wenkang 2020 年 9 月 16 日
I am using Matlab 2018b.
I have a variable b2f with is a time-series. Its size is 1x7200. I am trying to use EMD as:
[imf,residual,info] = emd(b2f);
But I am getting the following error message: "ERROR : number of arguments should be as 5". I have Googled it already but I can't find out what the issue is. Does anyone know what I'm doing wrong?
Thanks!

採用された回答

Harsha Priya Daggubati
Harsha Priya Daggubati 2020 年 3 月 16 日
Hi,
The input argument to 'emd' method should be uniformly sampled time-domain signal, specified as either a vector or single data column timetable. I guess the issue might be with the class of b2f variable as you mentioned it is a time-series object.
Hope this helps!
  1 件のコメント
Wenkang
Wenkang 2020 年 9 月 16 日
編集済み: Wenkang 2020 年 9 月 16 日
I tried to run the demo code and it also failed.
>> load('sinusoidalSignalExampleData.mat','X','fs');
t = (0:length(X)-1)/fs;
plot(t,X);
xlabel('Time(s)');
>> [imf,residual,info] = emd(X,'Interpolation','pchip');
Error using emd
ERROR : number of arguments should be as 5
my version is 9.4.0.813654 (R2018a)
This issue can be solved by copying the original emd.m file to another folder and rename it. Dont know why but it works.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTime Series Collections についてさらに検索

タグ

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by