Path: news.mathworks.com!not-for-mail
From: "David Doria" <daviddoria@gmail.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Figure vs axis handles?
Date: Thu, 10 Apr 2008 15:14:08 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 13
Message-ID: <ftlas0$ke9$1@fred.mathworks.com>
References: <ftl82n$efq$1@fred.mathworks.com> <39ea46a8-5e83-4ead-8c54-23dc3967f055@c19g2000prf.googlegroups.com>
Reply-To: "David Doria" <daviddoria@gmail.com>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1207840448 20937 172.30.248.37 (10 Apr 2008 15:14:08 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Thu, 10 Apr 2008 15:14:08 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1105197
Xref: news.mathworks.com comp.soft-sys.matlab:462222



Thanks, thats really helpful - here is the solution to my
problem:

doesn't work:
set(BottomLeftPlot, 'Title', 'OnCircle');

works fine:
set(BottomLeftPlot, 'Title', text('String','OnCircle'));

it seems matlab should be able to recognize that 'OnCircle'
should be treated as a text string... but apparently it can't.

Dave