how to set the limit of x axis and y axis as per the required range for the following code

5 visualizaciones (últimos 30 días)
code:
x=1:12
y=[11 3 9 6 6 8 8 10 9 8 10 11];
xlim([0,12]);
ylim([0,12]);
plot(x,y,'-k*')
when i run the code i am getting the graph but the x axis values and y axis values are not in the required range.Could anyone please help me on this.
  2 comentarios
Mathieu NOE
Mathieu NOE el 8 de En. de 2021
hello
you have to put the plot command first otherwise the xlim and ylim have no object to work on
plot(x,y,'-k*')
xlim([0,12]);
ylim([0,12]);
Rik
Rik el 2 de Mzo. de 2021
There is a nuance here: xlim and ylim need an existing axes object and will not create one. That means you have to make sure an axes object exists, which you can do with plot, but also with many other functions. The order you proposed in your answer (which you posted as comment) makes the most sense, as plot will (under some conditions) modify the limits.

Iniciar sesión para comentar.

Respuestas (1)

jaah navi
jaah navi el 8 de En. de 2021
Thanks for your info.

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by