Azzera filtri
Azzera filtri

How to get rid of the white space when using subplot1 with imagesc?

4 visualizzazioni (ultimi 30 giorni)
Dear MATLAB experts,
I have used subplot1 as follows: subplot1(5,4,'Min',[0.010 0.010],'Max',[0.99 0.99],'Gap', [0.01 0.05], 'XTickL', 'None', 'YTickL', 'Margin'); imagesc(data(:,:,11,100)); The result is shown below.
Is there any way to get rid of the white space abowe and on the right side of the figures? I would also like to resize the subplots so that they have equal weight and height (i.e. each subpot would be rectangular).
Best, Maria
  1 Commento
Jan
Jan il 23 Mar 2017
Modificato: Jan il 25 Mar 2017
It is not a good idea to let us guess, what subplot1 is. You do not mean the white space on the "figure", but this concerns the image inside the axes. Then there is no relation to subplot1, but this is a question concerning imagesc.

Accedi per commentare.

Risposta accettata

Jan
Jan il 23 Mar 2017
When I guess that you use FEX: subplot1, this command suffers from using gca internally and it does not provide the hanlde of the created axes as output. This is prone to errors, iof the user clicks on in any other figure during the creation of the GUI. I'd prefer one of the many other subplot enhancements of the FEX.
But if you want to use subplot1, try:
subplot1(5,4,'Min',[0.010 0.010],'Max',[0.99 0.99], ...
'Gap', [0.01 0.05], 'XTickL', 'None', 'YTickL', 'Margin');
AxesH = gca;
imagesc(data(:,:,11,100));
axis(AxesH, 'tight');
  2 Commenti
Maria
Maria il 25 Mar 2017
Many thanks for your answer and sorry if my question was unclear! FEX: subplot1 is the function that I have tried to use. Your example code did exactly what I wanted.
Best, Maria
Jan
Jan il 25 Mar 2017
Modificato: Jan il 25 Mar 2017
@Maria: You are welcome. Questions for clarifications belong to the standard process of solving a problem. It is the nature of questions in the forum, that the one or other part of it is unclear: if every details is clear to the author, it would not be a problem anymore usually :-)

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by