Filter löschen
Filter löschen

how to set boundaries imshow

2 Ansichten (letzte 30 Tage)
Pavel Kuzmitsky
Pavel Kuzmitsky am 6 Nov. 2022
Beantwortet: Image Analyst am 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?

Akzeptierte Antwort

Image Analyst
Image Analyst am 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];

Weitere Antworten (0)

Kategorien

Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by