1###
2### Gnuplot version 5.0 initialization file
3### This file is loaded by gnuplot at the start of each run.
4### It is provided as a template, with all commands commented out.
5### Uncomment and customize lines for local use.
6### Any commands placed here will affect all users.
7### To customize gnuplot's initial state for an individual user,
8### place commands in a private file ~/.gnuplot instead.
9
10###
11### Language initialization
12###
13# set locale
14# set encoding locale
15
16###
17### Default line colors and repeat cycle
18###
19# set linetype 1 lc rgb "dark-violet" lw 1
20# set linetype 2 lc rgb "#009e73" lw 1
21# set linetype 3 lc rgb "#56b4e9" lw 1
22# set linetype 4 lc rgb "#e69f00" lw 1
23# set linetype 5 lc rgb "#f0e442" lw 1
24# set linetype 6 lc rgb "#0072b2" lw 1
25# set linetype 7 lc rgb "#e51e10" lw 1
26# set linetype 8 lc rgb "black"   lw 1
27# set linetype cycle 8
28
29###
30### Initialize the default loadpath for shared gnuplot scripts and data.
31### Please confirm that this path is correct before uncommented the line below.
32###
33# set loadpath "/usr/local/share/gnuplot/4.7/demo"
34
35###
36### Some commonly used functions that are not built in
37###
38# sinc(x) = sin(x)/x
39# rgb(r,g,b) = sprintf("#%06x",256.*256.*255.*r+256.*255.*g+255.*b)
40# hsv(h,s,v) = sprintf("#%06x",hsv2rgb(h,s,v))
41
42###
43### Other preferences
44###
45# set clip two
46
47