Path: csiph.com!news.swapon.de!eternal-september.org!feeder.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: =?UTF-8?Q?J=c3=b6rg_Buchholz?= Newsgroups: comp.graphics.apps.gnuplot Subject: Re: Plotting many curves? Date: Tue, 12 Sep 2017 13:06:56 +0200 Organization: A noiseless patient Spider Lines: 50 Message-ID: References: <81a289ce-bba5-424e-86ec-e24cc94d69a8@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Date: Tue, 12 Sep 2017 11:06:56 -0000 (UTC) Injection-Info: reader.eternal-september.org; posting-host="9e111a5409c2fe8f4a024d89b9a8c049"; logging-data="13302"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX199XyTcBn2luVYWdhA59KMPkGiPfGtN9ds=" User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 In-Reply-To: <81a289ce-bba5-424e-86ec-e24cc94d69a8@googlegroups.com> Content-Language: de-DE Cancel-Lock: sha1:Dqv0dSv5ECKyAY9TMbi91v/0Jyc= Xref: csiph.com comp.graphics.apps.gnuplot:3747 On 11.09.2017 18:30, Cass Sackett wrote: > I'm trying to make a complicated plot with many individual curves, like > > plot \ > x1(t), y1(t), \ > x2(t), y2(t), \ > x3(t), y3(t), \ > x4(t), y4(t), \ > x5(t), y5(t), \ > x6(t), y6(t), \ > x7(t), y7(t), \ > x8(t), y8(t), \ > etc > > After about 20 functions, it starts to generate errors. It looks like there is a limit on the length of the command line? If that is my problem, is there any way to work around this? > > Thanks! > No problem with: set parametric plot [-10:10][-10:10][-10:10]\ sin(t)/t,t ,\ sin(t),cos(t) ,\ t,sin(t)/t ,\ sin(t)/t,cos(t)/t ,\ t,log(t) ,\ -t,log(t) ,\ sin(t),t**2 ,\ -sin(t),t**2 ,\ tan(t),t, \ t,tan(t),\ -t,t ,\ cos(t),cos(2*t) ,\ 2*cos(t),sin(t) ,\ -cosh(t),sinh(t),\ (sin(t)/t)-5,t ,\ (sin(t)/t)-4,t ,\ (sin(t)/t)-3,t ,\ (sin(t)/t)-2,t ,\ (sin(t)/t)-1,t ,\ (sin(t)/t)+1,t ,\ (sin(t)/t)+2,t ,\ (sin(t)/t)+3,t ,\ (sin(t)/t)+4,t ,\ (sin(t)/t)+5,t Jörg