필터 지우기
필터 지우기

how to display value 0,5000,100​00,15000,2​0000,25000​,30000,350​00,40000,4​5000 on y-axes in bar graph matlab

조회 수: 6 (최근 30일)
how to display value 0,5000,10000,15000,20000,25000,30000,35000,40000,45000 on y-axes in bar graph matlab

채택된 답변

Stephen23
Stephen23 2015년 12월 15일
편집: Stephen23 2015년 12월 15일
This page explains how to change the tick labels:
Note that the solution depends on what MATLAB version you are using:
% For R2014b and later:
ax = gca;
ax.XTick = [-3*pi -2*pi -pi 0 pi 2*pi 3*pi];
ax.YTick = [-1 -0.5 0 0.5 1];
% For R2014a and earlier:
ax = gca;
set(ax,'XTick',[-3*pi -2*pi -pi 0 pi 2*pi 3*pi])
set(ax,'YTick',[-1 -0.5 0 0.5 1])
Note that you can also supply the labels as strings in a cell array, which is useful if you want to precisely control their format, how they are displayed, or non-numeric tick labels.

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