How to reduce space between ylabel and y ticks in Matlab plot?

89 次查看(过去 30 天)
How to reduce the space between y-label and y-ticks, in other words how to closer the y-label to y-axis.

采纳的回答

Subhodh Sharma
Subhodh Sharma 2021-9-25
编辑:Subhodh Sharma 2021-9-25
You can use the below command..
ylh=ylabel('ylabel'); % adding ylabelto figure
dy=0.2;
ylh.Position(1)=ylh.Position(1)-dy; % you can change 'dy' according to your need. dy=+ve, will move the label from y axis. dy=-ve , will move the label closer to the axis.
  3 个评论
Walter Roberson
Walter Roberson 2021-9-26
Are you using R2015a or earlier? That would be important information to know for the purposes of this question !!

请先登录,再进行评论。

更多回答(1 个)

yanqi liu
yanqi liu 2021-9-26
编辑:Walter Roberson 2021-9-26
sir, my be you can ref the follow code, please check
clc; clear all; close all;
figure;
ezplot('y=sin(x)');
pause(0.1);
hs = get(gca, 'XLabel');
pos = get(hs, 'Position');
pos(2) = pos(2)+0.2;
set(hs, 'Position', pos)
hs = get(gca, 'YLabel');
pos = get(hs, 'Position');
pos(1) = pos(1)+0.2;
set(hs, 'Position', pos)
  4 个评论
Ammy
Ammy 2021-9-27
Thank you very much, but its work for ezplot,
I want to do it for plot(x,y,..)
How can I use above for that?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Dates and Time 的更多信息

产品


版本

R2013a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by