Can fploy and ezplot a discrete time signal?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm trying to plot a discrete time signal : y[n] = 5𝛿(n)+3u(n-3) , for n=[-1:0.01:10] by using fplot or ezplot.
Here's what I've tried but the result seems not correct.
n = [-1:0.01:10];
y = 5*dirac(n) + 3*heaviside(n-3);
fplot(y)
grid on
xlabel('t (time)');
ylabel('[y5(t)]');
0 Kommentare
Antworten (1)
Walter Roberson
am 15 Feb. 2021
No. fplot and ezplot are for function handles or symbolic expressions or symbolic functions. They treat numbers as if they were a formula that returned that number.
Use a different plotting function such as stairs or stem
0 Kommentare
Siehe auch
Kategorien
Mehr zu Particle & Nuclear Physics finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!