Effacer les filtres
Effacer les filtres

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

30 vues (au cours des 30 derniers jours)
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 commentaires
Jan
Jan le 9 Mai 2019
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 le 9 Mai 2019
Modifié(e) : Adam Danz le 9 Mai 2019
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.

Connectez-vous pour commenter.

Réponse acceptée

Adam Danz
Adam Danz le 9 Mai 2019
Modifié(e) : Adam Danz le 9 Mai 2019
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(:))])

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by