The syntax used for representing complex numbers in PyXPlot differs from that used in Gnuplot. Whereas Gnuplot expects the real and imaginary components of complex numbers to be represented {a,b}, PyXPlot uses the syntax a+b*i, assuming that the variable i has been defined to equal sqrt(-1). In addition, in PyXPlot complex arithmetic must first be enabled using the set numerics complex command before complex numbers may be entered. This is illustrated by the following example:
gnuplot> print {1,2} + {3,4}
{4.0, 6.0}
pyxplot> set numerics complex
pyxplot> print (1+2*i) + (3+4*i)
(4+6i)