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
OCDER
OCDER 2018년 9월 26일
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?

댓글을 달려면 로그인하십시오.

 채택된 답변

Steven Lord
Steven Lord 2018년 9월 26일

0 개 추천

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일

0 개 추천

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에 대해 자세히 알아보기

질문:

2018년 9월 26일

답변:

2023년 6월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by