|
From: Hans-Bernhard B. <HBB...@t-...> - 2016-02-19 22:36:31
|
Am 19.02.2016 um 04:26 schrieb Dr. Agustin Gonzalez:
> it sends the following message:
>
> "plotdelaunay_symbols_keys_2", line 20: ';' expected
>
> and the prompt remains in multiplot>
That doesn't mean that you have a "problem with multiplot", though.
And indeed multiplot has nothing to do with it.
Removing all parts of your script that still leave the problem intact,
one arrives at something like this:
gnuplot> p x w p pt 09
^
';' expected
The problem is that you accidentally created an ill-formed octal number.
gnuplot's syntax is like C in many respects; up to and including
hexadecimal and octal integer constants. So lose the leading zeroes,
and things will work.
|