Advertisement
Guest User

Untitled

a guest
Feb 4th, 2017
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. # Colormap similar to Matlab parula, see:
  3. # http://www.mathworks.de/products/matlab/matlab-graphics/#new_look_for_matlab_graphics
  4.  
  5. # line styles
  6. set style line  1 lt 1 lc rgb '#352a87' # blue
  7. set style line  2 lt 1 lc rgb '#0f5cdd' # blue
  8. set style line  3 lt 1 lc rgb '#1481d6' # blue
  9. set style line  4 lt 1 lc rgb '#06a4ca' # cyan
  10. set style line  5 lt 1 lc rgb '#2eb7a4' # green
  11. set style line  6 lt 1 lc rgb '#87bf77' # green
  12. set style line  7 lt 1 lc rgb '#d1bb59' # orange
  13. set style line  8 lt 1 lc rgb '#fec832' # orange
  14. set style line  9 lt 1 lc rgb '#f9fb0e' # yellow
  15.  
  16. # New default Matlab line colors, introduced together with parula (2014b)
  17. set style line 11 lt 1 lc rgb '#0072bd' # blue
  18. set style line 12 lt 1 lc rgb '#d95319' # orange
  19. set style line 13 lt 1 lc rgb '#edb120' # yellow
  20. set style line 14 lt 1 lc rgb '#7e2f8e' # purple
  21. set style line 15 lt 1 lc rgb '#77ac30' # green
  22. set style line 16 lt 1 lc rgb '#4dbeee' # light-blue
  23. set style line 17 lt 1 lc rgb '#a2142f' # red
  24.  
  25. # palette
  26. set palette defined (\
  27. 0 '#352a87',\
  28. 1 '#0363e1',\
  29. 2 '#1485d4',\
  30. 3 '#06a7c6',\
  31. 4 '#38b99e',\
  32. 5 '#92bf73',\
  33. 6 '#d9ba56',\
  34. 7 '#fcce2e',\
  35. 8 '#f9fb0e')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement