Azzera filtri
Azzera filtri

how to set boundaries imshow

2 visualizzazioni (ultimi 30 giorni)
Pavel Kuzmitsky
Pavel Kuzmitsky il 6 Nov 2022
Risposto: Image Analyst il 7 Nov 2022
how to set boundaries imshow, how to set a position and outerposition?
for example, I want to stretch the image over the entire space, how do I do this?

Risposta accettata

Image Analyst
Image Analyst il 7 Nov 2022
You can set the .Position property of the axes to enlarge it so that it fills the entire figure window, or close to it.
ax = gca;
g = gcf;
ax.Units = 'normalized';
g.Units = 'normalized';
ax.Position = [0, 0, 1, 1];

Più risposte (0)

Categorie

Scopri di più su Startup and Shutdown in Help Center e File Exchange

Tag

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by