How to increase axis of stem plots

11 views (last 30 days)
Noah Lauer
Noah Lauer on 27 Feb 2021
Edited: KALYAN ACHARJYA on 27 Feb 2021
I am trying to create a stem plot and using the following code:
x=[100,500,1000]
y=[2,8,6]
stem(x,y)
however, i need the graph to start at value 0 and end at 1400 on x axis.
I also need the y value to start at 0 and end at 16, so that there is some space around the ploted points.

Answers (2)

KALYAN ACHARJYA
KALYAN ACHARJYA on 27 Feb 2021
Edited: KALYAN ACHARJYA on 27 Feb 2021
xlim([0,1400 ])
Do the same for y axis
ylim([0 16])

Steven Lord
Steven Lord on 27 Feb 2021
Use the axis function to set the limits.

Tags

Products

Community Treasure Hunt

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

Start Hunting!