How to set the current date in the gnuplot title -
it's possible set current date in gnuplot title?
something like...
set title "date of execution = datetime()
"
thanks in advance.
alexandre.
use strftime
, time(0)
add time/data title, e.g.:
set title "data of execution ".strftime("%a %b %d %h:%m:%s %y", time(0))
alternatively, if doesn't have in title can use
set timestamp
Comments
Post a Comment