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: set range for second independent variable in special file '++' Date: Mon, 20 Mar 2017 08:36:22 +0100 Organization: solani.org Lines: 29 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Trace: solani.org 1489995383 8217 eJwFwQERADEIAzBLcKMU5PxT5l/CEpz0HEYiAxd3Sa3K/KZ9orjTBOf4ojUKY/9Ks+6yYD0pyxDx (20 Mar 2017 07:36:23 GMT) X-Complaints-To: abuse@news.solani.org NNTP-Posting-Date: Mon, 20 Mar 2017 07:36:23 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 X-User-ID: eJwFwQcRADAIBDBLjP5D5fQY/iU0gVNZcQgeLPY6IzcT+hpeL1ZmOHbFS1O5jA0LCLodJh8O0hBV X-Mozilla-News-Host: news://news.solani.org:119 X-NNTP-Posting-Host: eJwFwYEBACAEBMCVfPg0Tsj+I3TnSrC20Wk+PoOW1fclQFu2LwMHidM11hkiQDYloiye6gcZ6hC+ Cancel-Lock: sha1:oQpGWOA8EfuPvUkpi9KBNLVflbA= Xref: csiph.com comp.graphics.apps.gnuplot:3584 Hi, this is an example from the help: splot [-2:2][-2:2] sample [h=1:10] '+' using (cos(h)):(sin(h)):(h) Simple enough. This gives an error, however splot sample [h=-9:9] [d=-0.2:0.2] '++' using (cos(h)):(sin(h)):(h+d) . Can i set the range for the second independent variable of "++" and still set the x,y display range independently? I managed to do it plotting the numbers to a table, and then plotting that with different (auto)ranging: set xr [-9:9] set yr [-0.2:0.2] set table $dat splot '++' using (cos(h)):(sin(h)):(h+d) unset table reset splot $dat w l but I think I'm missing something. ? Karl