I need to pass a list of arrays to an external (?) function called gnuplot(), like in the example at the bottom (from http://search.cpan.org/~caidaperl/Chart-Graph-3.2/Graph/Gnuplot.pm).
What if I have this:
@plots = ($data, $fnc1, $fnc2);
Then I can't do
gnuplot(\%options, @plots);
which...