필터 지우기
필터 지우기

How to synthesise discrete signal?

조회 수: 2 (최근 30일)
Jonathan George
Jonathan George 2022년 3월 25일
답변: Voss 2022년 3월 25일
How can I synthesise a discrete signal given by the expression x[n]=1.23^(-n) for 0<=n<=819?
Thank you in advance.

채택된 답변

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

추가 답변 (1개)

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

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by