Como eu faço para colocar a escala no eixo x de um gráfico Ex: um gráfico de 0 até 100 mostrando de 10 em 10

2 comentarios

KALYAN ACHARJYA
KALYAN ACHARJYA el 26 de Sept. de 2018
Editada: KALYAN ACHARJYA el 26 de Sept. de 2018
English Please?
Use o idioma inglês
OCDER
OCDER el 26 de Sept. de 2018
From google translator:
How do I place the scale on the x-axis? Ex plot: a graph from 0 to 100 showing 10 in 10
Can you clarify "10 in 10"? Can you write in English for us?
Você pode esclarecer "10 em 10"? Você pode escrever em inglês?

Iniciar sesión para comentar.

 Respuesta aceptada

Steven Lord
Steven Lord el 26 de Sept. de 2018

0 votos

x = linspace(0,50);
y = sin(x/2);
plot(x,y)
xticks(0:10:50)

Más respuestas (2)

KALYAN ACHARJYA
KALYAN ACHARJYA el 26 de Sept. de 2018
Editada: KALYAN ACHARJYA el 26 de Sept. de 2018

0 votos

use esta linha
axis([0 100 0 inf])
Por exemplo, veja o exemplo a seguir
x=0:1:100;
y=x.^2+1;
plot(x,y)
axis([0 100 0 inf])
rafael
rafael el 12 de Jun. de 2023

0 votos

x = linspace(0,50);
y = sin(x/2);
plot(x,y)
xticks(0:10:50

Categorías

Más información sobre Strategy & Logic en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 26 de Sept. de 2018

Respondida:

el 12 de Jun. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by