Path: news.mathworks.com!not-for-mail
From: "David Doria" <daviddoria@gmail.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Plot a line to a specific axis?
Date: Thu, 11 Oct 2007 21:16:34 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 40
Message-ID: <fem3ri$qvg$1@fred.mathworks.com>
References: <fem01v$8ge$1@fred.mathworks.com> <fem09q$d4q$1@fred.mathworks.com>
Reply-To: "David Doria" <daviddoria@gmail.com>
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 1192137394 27632 172.30.248.37 (11 Oct 2007 21:16:34 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Thu, 11 Oct 2007 21:16:34 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1105197
Xref: news.mathworks.com comp.soft-sys.matlab:432526



Great, thanks!

"Dan Sternberg" <dsternbeNO@SPAMmathworks.com> wrote in
message <fem09q$d4q$1@fred.mathworks.com>...
> You may want to try passing in the parent axes as a
paremeter to the LINE 
> function, like this:
> 
> h1 = subplot(2,1,1);
> h2 = subplot(2,1,2);
> line(1:10,rand(1,10),'Parent',h1);
> 
> -I hope this helps.
>  Dan
> 
> ---
> Dan Sternberg
> The MathWorks, Inc.
> 
> "David Doria" <daviddoria@gmail.com> wrote in message 
> news:fem01v$8ge$1@fred.mathworks.com...
> > It seems from the help that the line() function will only
> > plot to the current axis, is this correct?
> >
> > for example, i have a (2,1) subplot that i want to alternate
> > plotting lines on.
> >
> > I did h1=subplot(2,1,1);
> > h2=subplot(2,1,2);
> >
> > but line(h1, [xcoords], [ycoords]) doesn't work!
> >
> > Any suggestions?
> >
> > Thanks,
> >
> > David 
> 
>