Error using Butterworth filter

2 ビュー (過去 30 日間)
Sam
Sam 2014 年 12 月 24 日
コメント済み: Image Analyst 2014 年 12 月 24 日
When I use this code, I get the following error:Error using plot Data cannot have more than 2 dimensions. Maybe it's because I extract data from a 3D matrix?
[B,A] = butter(4,0.6); %standaard een low-pass filter. 4 = order. 0.6 = cutoff.
Gefilterde_data = filtfilt(B, A, data_stair_rise(welke_pp,i_testen).VideoSignals);
plot(Gefilterde_data);

回答 (1 件)

Image Analyst
Image Analyst 2014 年 12 月 24 日
There is a plot3() function you can use instead. Try that.
  2 件のコメント
Sam
Sam 2014 年 12 月 24 日
Already tried that. But than he gives an error 'not enough input arguments'...
Image Analyst
Image Analyst 2014 年 12 月 24 日
Then read the help and supply all the input arguments it wants.

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by