採用された回答

Maik
Maik 2022 年 11 月 5 日

0 投票

n = (-20:20);
u_n = n>=0;
u_n_2 = n>=2;
u_n_5 = n>=5;
u_diff = u_n_2 - u_n_5;
subplot(3,1,1); stem(n,u_n_2);xlim([-15 15]); ylim([-2 2])
subplot(3,1,2); stem(n,u_n_5);xlim([-15 15]); ylim([-2 2])
subplot(3,1,3); stem(n,u_diff);xlim([-15 15]); ylim([-2 2])

その他の回答 (1 件)

Ghadeer
Ghadeer 2023 年 10 月 12 日

0 投票

X(n) = u(n) + 2u(n-1)+u(n-4)

タグ

質問済み:

2022 年 11 月 3 日

回答済み:

2023 年 10 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by