gnuplot / version (E)
Note on the gnuplot versionSome Commands Changed The most recent version of gnuplot is ver.4.0, and some gnuplot To use 3.8, one has to change some commands. To turn of some setting, we have used set no.... This gnuplot> set nokey ^ warning: deprecated syntax, use "unset" gnuplot> unset key gnuplot> The set linestyle command which I often use in this site gnuplot> set linestyle 1 lt 4 lw 3 The command above must be rewrite as gnuplot> set style line 1 lt 4 lw 3 |