How to synthesise discrete signal?
4 ビュー (過去 30 日間)
古いコメントを表示
How can I synthesise a discrete signal given by the expression x[n]=1.23^(-n) for 0<=n<=819?
Thank you in advance.
0 件のコメント
採用された回答
Voss
2022 年 3 月 25 日
n = 0:819;
x = 1.23.^-n;
stem(n,x)
xlim([0 20]) % just look at the beginning
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Signal Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
