Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: change the size of title text
Date: Wed, 10 Dec 2008 05:47:02 +0000 (UTC)
Organization: The MathWorks Inc
Lines: 23
Message-ID: <ghnl4l$don$1@fred.mathworks.com>
References: <ghnkc9$50u$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-03-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1228888022 14103 172.30.248.38 (10 Dec 2008 05:47:02 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Wed, 10 Dec 2008 05:47:02 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 869871
Xref: news.mathworks.com comp.soft-sys.matlab:506028


"K R. Rad" <krahnamarad@yahoo.com> wrote in message <ghnkc9$50u$1@fred.mathworks.com>...
> for a plot, how can we change the size of the text for title of the plot?
> 
> Thanks in advance,
> K.

Take a look at

help title

If you're using a relatively recent version of MATLAB, you should be able to just say:

title('My Title', 'FontSize', 20);

Or, you can always do:

t = title('My Title');
set(t, 'FontSize', 20);


Hope this helps.

jiro