Path: news.mathworks.com!not-for-mail
From: "David Doria" <daviddoria@gmail.com>
Newsgroups: comp.soft-sys.matlab
Subject: Figure vs axis handles?
Date: Thu, 10 Apr 2008 14:26:31 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 19
Message-ID: <ftl82n$efq$1@fred.mathworks.com>
Reply-To: "David Doria" <daviddoria@gmail.com>
NNTP-Posting-Host: webapp-05-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1207837591 14842 172.30.248.35 (10 Apr 2008 14:26:31 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Thu, 10 Apr 2008 14:26:31 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1105197
Xref: news.mathworks.com comp.soft-sys.matlab:462211



f=figure;
BottomLeftPlot = subplot('Position', [.05 .1 .4 .4]);

I can set some properties like this:
xlim(BottomLeftPlot, [-180 180]);

and some like this:
set(BottomLeftPlot, 'XLimMode', 'manual');

but some dont work at all?
set(BottomLeftPlot, 'YLabel', 'beta');

Is there a good tutorial somewhere about which properties
belong to the figure, which belong to the axis (or is it
axEs?) and how to set them?

Thanks!

Dave