How to synthesise discrete signal?
4 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Voss
on 25 Mar 2022
n = 0:819;
x = 1.23.^-n;
stem(n,x)
xlim([0 20]) % just look at the beginning
0 Comments
More Answers (1)
See Also
Categories
Find more on Signal Processing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!