Setting y-axis in figure
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello all...
I would like to set the y-axis as shown in thisFigure.![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1066390/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1066390/image.jpeg)
댓글 수: 0
채택된 답변
Voss
2022년 7월 15일
ax = gca();
set(ax, ...
'YLim',[1 1e10], ...
'YScale','log', ...
'Box','on', ...
'XGrid','on', ...
'YGrid','on', ...
'YMinorGrid','off', ...
'YMinorTick','off', ...
'TickLength',[0.02 0.02], ...
'GridLineStyle',':', ...
'GridColor',[0 0 0], ...
'GridAlpha',1, ...
'FontSize',12)
ylabel('Infected cell y')
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!