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 commentaires

KALYAN ACHARJYA
KALYAN ACHARJYA le 26 Sep 2018
Modifié(e) : KALYAN ACHARJYA le 26 Sep 2018
English Please?
Use o idioma inglês
OCDER
OCDER le 26 Sep 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?

Connectez-vous pour commenter.

 Réponse acceptée

Steven Lord
Steven Lord le 26 Sep 2018

0 votes

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

Plus de réponses (2)

KALYAN ACHARJYA
KALYAN ACHARJYA le 26 Sep 2018
Modifié(e) : KALYAN ACHARJYA le 26 Sep 2018

0 votes

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 le 12 Juin 2023

0 votes

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

Catégories

En savoir plus sur Strategy & Logic dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by