On Mon, 11 Aug 2014, Logan Kelly wrote:
When I run the script on Win 7 64 bit CVS, I get the error.
gretl version 1.9.92cvs
Current session: 2014-08-11 13:42
'Kelly\AppData\Roaming\gretl\dynmulti.gp' is not the name of a variable
Error executing script: halting
DMplot(M,fname)
But if I change line 58 form
gnuplot --input=@tmpfile --output=@fname
to
gnuplot --input="@tmpfile" --output=@fname
It works. (With the corrections Allin suggested)
I am not sure if this is a windows thing or spaces in the path thing
Spaces in the path. Such filenames must always be quoted, on any system.
Allin