Reputation: 71
Hello Is there a way to completely reset gnuplot, ie taking gnuplot in the same state as just after launching it ? Reset does not kill the variables nor the functions, undefine cannot be used as "undefine *" since the first character has to be a letter. Thank you !
Upvotes: 6
Views: 7918
Reputation: 13087
gnuplot> x=1
gnuplot> print x
1
gnuplot> reset session
gnuplot> print x
undefined variable: x
Upvotes: 5