Plotting a Unit Periodic Impulse Signal

I need to graph this signal and do not know the best way to go about graphing the signal of an impulse including a period.

댓글 수: 2

Ameer Hamza
Ameer Hamza 2020년 9월 5일
What is the period of the output signal?
Evan Hicks
Evan Hicks 2020년 9월 5일
The period is 3 as shown through the subscript.

댓글을 달려면 로그인하십시오.

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 9월 5일

0 개 추천

Try this
syms x k
n = 10;
f = symsum(6*kroneckerDelta(x, 3*k), k, 0, n);
xv = 0:3*n;
yv = subs(f, xv);
stem(xv, yv);

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

릴리스

R2020a

질문:

2020년 9월 5일

답변:

2020년 9월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by