How to synthesise discrete signal?

4 ビュー (過去 30 日間)
Jonathan George
Jonathan George 2022 年 3 月 25 日
回答済み: Voss 2022 年 3 月 25 日
How can I synthesise a discrete signal given by the expression x[n]=1.23^(-n) for 0<=n<=819?
Thank you in advance.

採用された回答

Voss
Voss 2022 年 3 月 25 日
n = 0:819;
x = 1.23.^-n;
stem(n,x)
xlim([0 20]) % just look at the beginning

その他の回答 (1 件)

David Hill
David Hill 2022 年 3 月 25 日
n=0:.01:819;%not sure what interval or frequency
x=1.23.^(-n);

カテゴリ

Help Center および File ExchangeSignal Processing Toolbox についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by