Azzera filtri
Azzera filtri

size(figure)=[1,1] Why?

4 visualizzazioni (ultimi 30 giorni)
Claire Redfield
Claire Redfield il 18 Feb 2013
Hello guys,
When i make an empty figure like hFig = figure, why size(hFig)= size(figure)=[1,1] ? Apparently the figure shown on the screen is not 1 by 1 pixels...

Risposta accettata

Jan
Jan il 18 Feb 2013
Modificato: Jan il 18 Feb 2013
The figure command replies a handle, which identifies the GUI object uniquely. This handle is a scalar double, see:
figureHandle = figure
size(figureHandle)
You want:
figureHandle = figure;
figureSize = get(figureHandle, 'Position')

Più risposte (0)

Categorie

Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by