Please, I would like to present my xlimit in a plot into scientific notation?

조회 수: 1 (최근 30일)
Hi all,
Please, I have a graph that has axis limit in the range of 0,1000, 2000 ,........,15000. I would like to have it in scientific notation in the form 0, 1, 2, 3, ....., 15 *10^3.
Please, how can I do that.
Thank you in advance.
Kwaku.

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2021년 3월 5일
x_data=0:15000;
plot(x_data);
ax=gca;
ax.XAxis.Exponent=3;
See more option here

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by