How to remove the white blank in Axes when using the imagesc function in the Appdesigner?

20 次查看(过去 30 天)
I am using the imagesc to show the following 'z' in the Axes when using app designer.How to remove the white blank generated in image drawn using imagesc?
x = (100:200)';
y = (0:.1:20)+ 30;
z = sind(x*y)+x*y/1000;
% plot:
pcolor(app.UIAxes,z);
imagesc(app.UIAxes,x,y,z);
  2 个评论
Jan
Jan 2019-5-9
Do you mean the space between the image and the border of the axes, or between the axes and the figure?
Adam Danz
Adam Danz 2019-5-9
编辑:Adam Danz 2019-5-9
I'm assuming it's between the image and axes since 1) the default behavior for imagesc with regular figures is for the axis limits to match the data (ie, no white space) but this is not true in appdesigner axes and 2) there is no space between axes and figures in appdesigner unless the OP wants to change the color of the entire app background.

请先登录,再进行评论。

采纳的回答

Adam Danz
Adam Danz 2019-5-9
编辑:Adam Danz 2019-5-9
Option 1: tight axes
The easiest solution would be to set the axes to 'tight'.
axis(app.UIAxes, 'tight')
Option 2: set x/ylim
Alternatively, you could set the x and y axis limits to the max/min of your data.
xlim(app.UIAxes, [min(x(:)), max(x(:))])
ylim(app.UIAxes, [min(y(:)), max(y(:))])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Grid Lines, Tick Values, and Labels 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by