Filter command in matlab with only input system

조회 수: 6 (최근 30일)
Jorge Montane
Jorge Montane 2018년 2월 24일
답변: Birdman 2018년 2월 26일
By using only this input, z(n); how could I calculate the output by using filter command in matlab.

채택된 답변

Birdman
Birdman 2018년 2월 26일
Why don't you define this function with piecewise command very easily?
syms z(n)
z(n)=piecewise(n>=1 & n<=5,n,n<1 | n>5,0);
and plot it to see the results.
t=0:0.01:7;
plot(t,z(t))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by