Borrar filtros
Borrar filtros

How to synthesise discrete signal?

2 visualizaciones (últimos 30 días)
Jonathan George
Jonathan George el 25 de Mzo. de 2022
Respondida: Voss el 25 de Mzo. de 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.

Respuesta aceptada

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

Más respuestas (1)

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

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by