How do I set the range of on axis, as well as making it logrythmic scale without taking logs of the results please?
조회 수: 1 (최근 30일)
이전 댓글 표시
My graph needs an edited axis, but I can't get it to work; my plot (simplified) is just plot(x,y) thanks
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2016년 7월 14일
set(gca,'xscal','log')
댓글 수: 3
Azzi Abdelmalek
2016년 7월 14일
t=0:0.1:12
y=sin(t)
plot(t,y)
xlim([0.01 10])
set(gca,'xscale','log')
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!