Filter löschen
Filter löschen

How to synthesise discrete signal?

2 Ansichten (letzte 30 Tage)
Jonathan George
Jonathan George am 25 Mär. 2022
Beantwortet: Voss am 25 Mär. 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.

Akzeptierte Antwort

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

Weitere Antworten (1)

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

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by