<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Aptech &#187; Answers for "How to insert a pause between displaying of graphs"</title>
	<atom:link href="http://www.aptech.com/questions/how-to-insert-a-pause-between-displaying-of-graphs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aptech.com</link>
	<description></description>
	<lastBuildDate>Fri, 08 Feb 2013 19:12:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>By: jjones</title>
		<link>http://www.aptech.com/questions/how-to-insert-a-pause-between-displaying-of-graphs/#answer-1268</link>
		<comments>http://www.aptech.com/questions/how-to-insert-a-pause-between-displaying-of-graphs/#answer-1268#comments</comments>
		<pubDate>Fri, 31 Aug 2012 08:17:22 +0000</pubDate>
		<dc:creator>jjones</dc:creator>
		
		<guid isPermaLink="false">http://www.aptech.com/questions/how-to-insert-a-pause-between-displaying-of-graphs/#answer-1268</guid>
		<description><![CDATA[You have a couple of options for inserting pauses between the displaying of graphics or printing of output. 1. You can insert a pause for a specified number of seconds with the sleep command: //Draw first graph plotXY(x, y); //Pause &#8230; <a href="http://www.aptech.com/questions/how-to-insert-a-pause-between-displaying-of-graphs/#answer-1268">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>You have a couple of options for inserting pauses between the displaying of graphics or printing of output.</p>
<p>1. You can insert a pause for a specified number of seconds with the sleep command:</p>
<pre style="padding-left: 30px;"><span style="color: #008000;">//Draw first graph</span>
plotXY(x, y);
<span style="color: #008000;">//Pause for 2 seconds</span>
sleep(2);
<span style="color: #008000;">//Draw second graph</span>
plotXY(x2, y2);</pre>
<p>2. If you would like your graph or data to be displayed until you press a key, you can do that with the GAUSS keyw command:</p>
<pre style="padding-left: 30px;">k = 0;
print "press any key to display the next graphic";
do until k != 0;
   k = keyw();
endo;</pre>
<p>When your code reaches the line &#8220;k = keyw()&#8221;, a red cursor will be displayed in the program input/output window and the program will pause until you enter a key in the program input/output window.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aptech.com/questions/how-to-insert-a-pause-between-displaying-of-graphs/#answer-1268/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.aptech.com @ 2013-02-09 02:00:47 --