Error using Butterworth filter
이전 댓글 표시
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
2014년 12월 24일
0 개 추천
There is a plot3() function you can use instead. Try that.
댓글 수: 2
Sam
2014년 12월 24일
Image Analyst
2014년 12월 24일
Then read the help and supply all the input arguments it wants.
카테고리
도움말 센터 및 File Exchange에서 Butterworth에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!