|
From: Hans-Bernhard B. <HBB...@t-...> - 2011-05-26 19:08:14
|
On 26.05.2011 13:37, felipe rodriguez wrote:
> I try run gnuplot from a fortran program in Windows SO.
I've no idea what Windows "SO" is supposed to refer to. Ah well.
> CALL SYSTEM('gnuplot> load"proc.txt"')
What you're really looking for is probably
CALL SYSTEM('gnuplot proc.txt')
But make sure to check out "help batch" from inside gnuplot for the details.
|