Filter command in matlab with only input system
7 次查看(过去 30 天)
显示 更早的评论

By using only this input, z(n); how could I calculate the output by using filter command in matlab.
0 个评论
采纳的回答
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 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!