shiftinfgand plotting descrete signal
古いコメントを表示
Given the discrete signal,
x[n] = {2
↑
, − 2, 3, 4, − 4}
plot the following transformations
• x[n + 1]
• x[n − 2]
回答 (1 件)
Mahesh Taparia
2020 年 2 月 7 日
Hi
You can as follow:
X=[2,-2,3,4,-4];
N=length(X);
X1=(-1:N-1-1);
X2=(2:N+2-1);
figure;stem(X1,X)
figure;stem(X2,X)
カテゴリ
ヘルプ センター および File Exchange で Sources についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!