|
From: Ludovic G. <b00...@es...> - 2013-03-09 17:09:00
|
Hi fellow gnuplot users,
>
> I made a C++ program that uses gnuplot as an interface, everything
> works fine
> unless the command given to gnuplot exceeds a limited size (20 I think):
>
> This is how the command is constructed:
>
> string command="plot \"wallet.txt\" using 1 w l";
> for (int i=2;i<vectwalletvect.size();i++)
> {
> command.append(", \"wallet.txt\" using "+inttostring(i)+" w l");
> }
> g11.cmd(command);
>
> Works well except when i is above 20...
>
> Please help!
>
> LG
>
|