<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/236168</link>
    <title>MATLAB Central Newsreader - Plotting graphs</title>
    <description>Feed for thread: Plotting graphs</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Thu, 18 Sep 2008 09:00:05 -0400</pubDate>
      <title>Plotting graphs</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/236168#600823</link>
      <author>Mary Looney</author>
      <description>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?</description>
    </item>
    <item>
      <pubDate>Thu, 18 Sep 2008 09:35:03 -0400</pubDate>
      <title>Re: Plotting graphs</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/236168#600830</link>
      <author>Dave Brackett</author>
      <description>&quot;Mary Looney&quot; &amp;lt;mary.looney@cit.ie&amp;gt; wrote in message &amp;lt;gat5al$r1e$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; 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?&lt;br&gt;
&lt;br&gt;
either:&lt;br&gt;
plot first one&lt;br&gt;
hold on&lt;br&gt;
plot next one&lt;br&gt;
etc.&lt;br&gt;
&lt;br&gt;
or:&lt;br&gt;
plot first one&lt;br&gt;
line next one&lt;br&gt;
etc.</description>
    </item>
    <item>
      <pubDate>Thu, 18 Sep 2008 10:22:02 -0400</pubDate>
      <title>Re: Plotting graphs</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/236168#600833</link>
      <author>Lars </author>
      <description>or, and only, if all lines have same length, try something like&lt;br&gt;
&lt;br&gt;
myLines = [line1; line2; line3];&lt;br&gt;
plot(x, myLines);&lt;br&gt;
&lt;br&gt;
maybe your peripheral code can gather this information directly in a matrix like 'myLines'.&lt;br&gt;
&lt;br&gt;
Lars</description>
    </item>
  </channel>
</rss>

