How to increase axis of stem plots

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.

Products

Tags

Asked:

on 27 Feb 2021

Edited:

on 27 Feb 2021

Community Treasure Hunt

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

Start Hunting!