Filter command in matlab with only input system

5 ビュー (過去 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 Center および File ExchangeMatched 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