How to synthesise discrete signal?

3 次查看(过去 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.

采纳的回答

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 CenterFile Exchange 中查找有关 Signal Processing Toolbox 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by