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 个评论

KALYAN ACHARJYA
KALYAN ACHARJYA 2018-9-26
编辑:KALYAN ACHARJYA 2018-9-26
English Please?
Use o idioma inglês
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?

请先登录,再进行评论。

 采纳的回答

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

更多回答(2 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2018-9-26
编辑:KALYAN ACHARJYA 2018-9-26
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 2023-6-12

0 个投票

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

类别

帮助中心File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by