|
From: PavanG <gvk...@re...> - 2008-04-23 16:27:22
|
Hello All, I am trying to do the following gnuplot>GP=0 gnuplot> plot "tmp.$GP.250", "tmp.$GP.260", "tmp.$GP.270", "tmp.$GP.280" It complains that a file tmp.$GP.250 does not exist. What should I do to make it read GP as a variable? I tried gnuplot> plot 'tmp.$GP.250', 'tmp.$GP.260', 'tmp.$GP.270', 'tmp.$GP.280' [single quote] gnuplot> plot "tmp.($GP).250", "tmp.($GP).260", "tmp.($GP).270", "tmp.($GP).280" [parantheses around GP] None works. Suggestions? Thanks! -- View this message in context: http://www.nabble.com/Referencing-files-in-gnuplot-script-tp16834697p16834697.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |