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

Popular posts from this blog

What can cause "Required Package 'IndyCore' not found" when compiling a Delphi 2010 project? -

Change the color of an oval at click in Java AWT -