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 Kommentare

Ameer Hamza
Ameer Hamza am 5 Sep. 2020
What is the period of the output signal?
Evan Hicks
Evan Hicks am 5 Sep. 2020
The period is 3 as shown through the subscript.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Ameer Hamza
Ameer Hamza am 5 Sep. 2020

0 Stimmen

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);

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2020a

Gefragt:

am 5 Sep. 2020

Beantwortet:

am 5 Sep. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by