Azzera filtri
Azzera filtri

Basic Axes Handle question

1 visualizzazione (ultimi 30 giorni)
Nick
Nick il 26 Ott 2011
Ok so this is an extremely basic question.
If I write
h=gca
Matlab should create a new figure with axes and give me its handle. Exactly how its described in the helpfile.
But if I try to do this
set(h, 'title', 'testtitle')
I get an error saying
??? Error using ==> set Value must be a handle
I dont understand why MATLAB doesnt think its a handle, its obviously an axes handle.

Risposta accettata

Fangjun Jiang
Fangjun Jiang il 26 Ott 2011
h=gca;
TitleHandle=get(h,'title')
set(TitleHandle,'string','this is title text');

Più risposte (0)

Categorie

Scopri di più su Graphics Object Programming in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by