Clear Filters
Clear Filters

How to synthesise discrete signal?

2 views (last 30 days)
Jonathan George
Jonathan George on 25 Mar 2022
Answered: Voss on 25 Mar 2022
How can I synthesise a discrete signal given by the expression x[n]=1.23^(-n) for 0<=n<=819?
Thank you in advance.

Accepted Answer

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

More Answers (1)

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

Categories

Find more on MATLAB in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!