I have been trying to plot two vectors using this command with Gnuplot:
gnuplot> plot "test.dat" u 1:2:3:4 w vec
gnuplot> replot "test.dat" u 3:4:5:6 w vec
test.dat
0.000000 0.000000 1.57073177E-02 0.999876618 0.547507644 0.991522372
But, Gnuplot plots last coordinate (0.991522372) from the second command (replot command) by adding 1 to it.
So for the replot command, it draws a line from 1.57073177E-02, 0.999876618 to
0.547507644, 1 + 0.991522372
Can anyone help me to solve this problem?