How to synthesise discrete signal?

4 vues (au cours des 30 derniers jours)
Jonathan George
Jonathan George le 25 Mar 2022
Réponse apportée : Voss le 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.

Réponse acceptée

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

Plus de réponses (1)

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

Catégories

En savoir plus sur Signal Processing Toolbox dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by