How to set ytickslabel in graph version R2011b

조회 수: 1 (최근 30일)
ly
ly 2017년 5월 2일
답변: KL 2017년 5월 2일
Hi,
The graph has ylim([-1 1]) in y axis. Values are displayed -1 -0.5 0 0.5 1 in y axis
How to set ytickslabel in graph like -1 -0.75 -0.5 -0.25 0 0.25 0.5 0.75 1 in y axis?
Best,

채택된 답변

KL
KL 2017년 5월 2일
figure1 = figure;
% Create axes
axes1 = axes('Parent',figure1,...
    'YTick',[-1 -0.75 -0.5 -0.25 0 0.25 0.5 0.75 1]);
box(axes1,'on');
hold(axes1,'all');
% Create plot
plot(-1:1);

추가 답변 (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