Bandpass Filter Command Question
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I'm currently trying to design a bandpass filter to filter a series of input data y between 1-30 Hz. Acording to the syntax for bandpass, y is my x value, and (1,30) is my wpass value, but trying to run the command results in an 'invalid use of parentheses' error. Can someone explain why this is the case?
d = bandpass(y, (1,30));
댓글 수: 0
채택된 답변
Bora Eryilmaz
2023년 4월 13일
You need to use brackets, not parentheses:
y = rand(200,1);
Fs = 100; % Sampling rate, e.g., 100 Hz
d = bandpass(y, [1,30], Fs);
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Analog Filters에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!