How to scale an axis on a plot in powers of 10?
조회 수: 16 (최근 30일)
이전 댓글 표시
I have a plot of experimental data and the x-axis is scaled from
to
, but I want it to be scaled in powers of 10 from
to
. What could I do to fix this axis scaling issue?
Any help would be greatly appreciated!
댓글 수: 0
채택된 답변
Star Strider
2020년 9월 20일
Example —
x = logspace(5, 6, 25); % Create Data
y = rand(size(x)); % Create Data
figure
semilogx(x, y)
grid
xlim([1E2 1E6])
.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!