|
From: Ethan M. <merritt@u.washington.edu> - 2005-08-16 16:27:11
|
On Tuesday 16 August 2005 08:57 am, Robert Hart wrote:
>
> One thing I'd like to see is better support for using plot variables in
> other places of the plot command. e.g. I was trying to do something like
> this:
> splot "data.txt" lc rgb(x,y,z)
> or
> splot "data.txt" using 1:2:3:rgb($1,$2,$3) lc variable
That works, or would if you put parens around the expression:
set pm3d
splot "data" using 1:2:3:(rgb($1,$2,$3)) with lines
--
Ethan A Merritt merritt@u.washington.edu
Biomolecular Structure Center
Mailstop 357742
University of Washington, Seattle, WA 98195
|