How to apply butterworth filter to a cell array?

조회 수: 3 (최근 30일)
Tomaszzz
Tomaszzz 2022년 2월 21일
댓글: Tomaszzz 2022년 2월 21일
Hi all,
I have a 7x1 cell for which I would like to apply a butterworth filter to all cell arrays. Any idea how to do it?
filtfilt(b,a,mycell{:,1:7});
Index in position 2 exceeds array bounds (must not exceed 1).
Thanks

채택된 답변

Jan
Jan 2022년 2월 21일
You cell has the size {7x1}, not {1x7}.
filter needs one numerical vector or matrix as input. So use a loop:
result = cell(1, 7);
for k = 1:7
result{k} = filter(b, a, T_or_x_cycle{k});
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by