Put text in a figure that is not a graph/plot
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
How can I write a text in a graphic object (no plot) ?
I tried with
uicontrol('Style', 'text',...
but the text is inside a white rectangle. How can I write it in figure without some kind of labels as background ?
thanks
0 Kommentare
Antworten (1)
Matt Fig
am 12 Okt. 2012
Your description is vague.
U = uicontrol('style','edit',...
'units','norm',...
'pos',[0 0 1 1],...
'string','type here',...
'min',0,'max',10);
uicontrol(U)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!