Borrar filtros
Borrar filtros

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

30 visualizaciones (últimos 30 días)
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 comentarios
Jan
Jan el 9 de Mayo de 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 el 9 de Mayo de 2019
Editada: Adam Danz el 9 de Mayo de 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.

Iniciar sesión para comentar.

Respuesta aceptada

Adam Danz
Adam Danz el 9 de Mayo de 2019
Editada: Adam Danz el 9 de Mayo de 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(:))])

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by