Path: csiph.com!weretis.net!feeder4.news.weretis.net!feeder5.news.weretis.net!news.solani.org!.POSTED!not-for-mail From: Karl Ratzsch Newsgroups: comp.graphics.apps.gnuplot Subject: Re: 3d plot with arrowstyle variable Date: Tue, 9 Jan 2018 10:48:05 +0100 Organization: solani.org Lines: 23 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Trace: solani.org 1515491286 24088 eJwFwQEBwDAIAzBLQGl37AyGfwlPCLn6pKjkcm9rbwGvU18T0aZTjzZuWI/imIKwUoxgPxXkEAw= (9 Jan 2018 09:48:06 GMT) X-Complaints-To: abuse@news.solani.org NNTP-Posting-Date: Tue, 9 Jan 2018 09:48:06 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 In-Reply-To: X-NNTP-Posting-Host: eJwFwYEBwCAIA7CXhNJOzsEJ/59gQsj0fyEqOBxbSNT2aV1FHOyBu7cLx1eumyCqQEugOx4A7hAG X-User-ID: eJwFwQkBwDAIBDBNcA9UzsaKfwlLBIenaJla7dKpS1dtjCVEOfjkDHGNF6eRrZ74cEb7AwBqECM= Content-Language: de-DE-1901 Cancel-Lock: sha1:ixJ1gATSVD3pcAtvQDgx8aHfOVs= Xref: csiph.com comp.graphics.apps.gnuplot:3849 Am 08.01.2018 um 18:41 schrieb rmisko11@gmail.com: > I can get arrowstyle variable to work with 2D plots in gnuplot 5.0 patchlevel 3 > > but when I try it with 3d I get: > > "warning: arrowstyle 0 not found" > > splot 'myData.dat' u 1:2:3:4:5:6:7 with vectors arrowstyle variable t '' > Hm, sure this is exactly the command you tried? The following works for me in version 5.2pl2 and 5.0pl1: ========= $dat << EOD 1 1 1 3 3 3 1 0 0 0 1 1 1 2 EOD set style arrow 1 heads lw 2 set style arrow 2 heads lw 4 splot $dat us 1:2:3:4:5:6:7 with vect arrowstyle var =========