Path: csiph.com!news.mixmin.net!weretis.net!feeder1.news.weretis.net!news.solani.org!.POSTED!not-for-mail From: Karl Ratzsch Newsgroups: comp.graphics.apps.gnuplot Subject: Re: How to clear a plot window? Date: Fri, 23 Oct 2015 16:44:15 +0200 Organization: solani.org Lines: 24 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Trace: solani.org 1445611457 7025 eJwFwYEBgDAIA7CXUKCt5wyQ/09Yko4HzUAicnMpQTGl5RF+F4z1pp3ldHm0D2BgfRbsORcRvBDn (23 Oct 2015 14:44:17 GMT) X-Complaints-To: abuse@news.solani.org NNTP-Posting-Date: Fri, 23 Oct 2015 14:44:17 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 X-User-ID: eJwNyMkBwCAIBMCWONyNlgMC/Zdg5jlwKu+3CC4MxrGjvbPdYqymVFOtDpmYfzIM7brPldsi9QAybBHZ In-Reply-To: Cancel-Lock: sha1:AEG3dekBgTC0z6rHAesdmGpRHyk= X-NNTP-Posting-Host: eJwFwYEBwCAIA7CXqtCC5zAZ/59gQtPSDRflHM49+rM6w+hdbFhhJ6ccfgL6NgaQLNbOtvUAEesQBw== X-Enigmail-Draft-Status: N1110 Xref: csiph.com comp.graphics.apps.gnuplot:3111 Am 23.10.2015 um 14:45 schrieb Jean-Pierre Coulon: > I have a first page with 2 plots using muliplot, pause -1 and a second page > also with 2 plots using multiplot. > > A present the plots of page 2 overlap the plots of page 1. Is there a command > to clear the first 2 plots after I reply OK to the Pause window? The command "clear", nomen est omen, clears the terminal window. But you should generally enclose both pages between a pair of "set multi", "unset multi" commands each. set multi plot x plot y unset multi pause-1 set multi plot x2 plot y2 unset multi KArl