Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Plotting graphs
Date: Thu, 18 Sep 2008 10:22:02 +0000 (UTC)
Organization: Teles AG
Lines: 8
Message-ID: <gata4a$cht$1@fred.mathworks.com>
References: <gat5al$r1e$1@fred.mathworks.com> <gat7c7$hrt$1@fred.mathworks.com>
Reply-To: <HIDDEN>
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 1221733322 12861 172.30.248.37 (18 Sep 2008 10:22:02 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Thu, 18 Sep 2008 10:22:02 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1095707
Xref: news.mathworks.com comp.soft-sys.matlab:490744


or, and only, if all lines have same length, try something like

myLines = [line1; line2; line3];
plot(x, myLines);

maybe your peripheral code can gather this information directly in a matrix like 'myLines'.

Lars