Path: news.mathworks.com!not-for-mail
From: "Bruno Luong" <b.luong@fogale.fr>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Figure vs axis handles?
Date: Thu, 10 Apr 2008 17:54:02 +0000 (UTC)
Organization: FOGALE nanotech
Lines: 17
Message-ID: <ftlk7q$bin$1@fred.mathworks.com>
References: <ftl82n$efq$1@fred.mathworks.com> <39ea46a8-5e83-4ead-8c54-23dc3967f055@c19g2000prf.googlegroups.com> <ftlas0$ke9$1@fred.mathworks.com>
Reply-To: "Bruno Luong" <b.luong@fogale.fr>
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 1207850042 11863 172.30.248.37 (10 Apr 2008 17:54:02 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Thu, 10 Apr 2008 17:54:02 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 390839
Xref: news.mathworks.com comp.soft-sys.matlab:462251



"David Doria" <daviddoria@gmail.com> wrote in message
<ftlas0$ke9$1@fred.mathworks.com>...
> 
> doesn't work:
> set(BottomLeftPlot, 'Title', 'OnCircle');
> 
> works fine:
> set(BottomLeftPlot, 'Title', text('String','OnCircle'));
> 

Go to help page and type "axes properties" in the search
box, in the description of "title" property, the help file
states that the value must be a handle, and not a string.

text('String','OnCircle') returns a handles.

Bruno