|
|
Re: Problem with clearing text from axes
Posted:
Jan 14, 2013 2:19 PM
|
|
"Kate J." wrote in message <kd1ils$rrb$1@newscl01ah.mathworks.com>...
> set(axesHandle, 'Xlim', [-0.7 0.7], 'Ylim', [-0.2 0.7]); > > TaskNumHandle = text(10,10,'Task # = 1');
(10,10) is outside the axe limits, therefore I'm not surprises you won't see anything displayed. You should also enfore the axes by calling: text(..., 'Parent', axesHandle)
Bruno
|
|