plotting a discrete signal that starts from -2

 Akzeptierte Antwort

Adam
Adam am 16 Sep. 2015
Bearbeitet: Adam am 16 Sep. 2015

0 Stimmen

If you don't want just default x-axis values of 1 upto the length of the array you need to define the values and plot e.g.
stem( x, y )
where y would normally be what you have called x and x would be e.g.
x = -4:2
y = [1,-2,4,6,-5,8,10];
I guess if you want x = 0 at y = -5.

Weitere Antworten (0)

Gefragt:

am 16 Sep. 2015

Bearbeitet:

am 16 Sep. 2015

Community Treasure Hunt

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

Start Hunting!

Translated by