let launch_gnuplot ?(verb=false) ?(inter=false) ?(script="plotdata.gnuplot") ?(t=0.) () =
        if verb then print "\n  3. Exécution du script '%s' par GNUPlot v4.6+..." script;
        if inter then
                Sys.command (sprint "/usr/bin/gnuplot \"%s\" && notify-send 'Succès gnuplot pour t=%g'" script t)
        else
                Sys.command (sprint "/usr/bin/gnuplot \"%s\"" script)