How to synthesise discrete signal?

1 visualizzazione (ultimi 30 giorni)
Jonathan George
Jonathan George il 25 Mar 2022
Risposto: Voss il 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.

Risposta accettata

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

Più risposte (1)

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

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by