Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Plotting graphs
Date: Thu, 18 Sep 2008 09:35:03 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 13
Message-ID: <gat7c7$hrt$1@fred.mathworks.com>
References: <gat5al$r1e$1@fred.mathworks.com>
Reply-To: <HIDDEN>
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 1221730503 18301 172.30.248.35 (18 Sep 2008 09:35:03 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Thu, 18 Sep 2008 09:35:03 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1338633
Xref: news.mathworks.com comp.soft-sys.matlab:490741


"Mary Looney" <mary.looney@cit.ie> wrote in message <gat5al$r1e$1@fred.mathworks.com>...
> I have five graphs of data all plotted against the same x or time axis. The y axis is plotting throughput for 5 different parameters. I know how to plot each one individually. How do I plot all the data on one graph i.e. one time axis one throughput axis with 5 different graphs of throughput plotted? How is this achieved in MATLAB?

either:
plot first one
hold on
plot next one
etc.

or:
plot first one
line next one
etc.