Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. set multiplot layout 2,1 margins .1,.8,.05,.95 spacing .05
  2.  
  3. $map2 << EOD
  4. 0 0 5
  5. 0 1 4
  6. 0 2 3
  7. 0 3 1
  8. 0 4 0
  9.  
  10. 1 0 2
  11. 1 1 2
  12. 1 2 0
  13. 1 3 0
  14. 1 4 1
  15.  
  16. 2 0 0
  17. 2 1 0
  18. 2 2 0
  19. 2 3 1
  20. 2 4 0
  21.  
  22. 3 0 0
  23. 3 1 0
  24. 3 2 0
  25. 3 3 2
  26. 3 4 3
  27.  
  28. 4 0 0
  29. 4 1 1
  30. 4 2 2
  31. 4 3 4
  32. 4 4 3
  33. EOD
  34.  
  35. set multiplot layout 2,1 margins .1,.8,.05,.95 spacing .05
  36. plot '$map2' using 2:1:3 with image
  37. plot sin(x)*cos(x)**2, tan(x)
  38. unset multiplot
  39.  
  40. $map2 << EOD
  41. 0 0 5
  42. 0 1 4
  43. 0 2 3
  44. 0 3 1
  45. 0 4 0
  46.  
  47. 1 0 2
  48. 1 1 2
  49. 1 2 0
  50. 1 3 0
  51. 1 4 1
  52.  
  53. 2 0 0
  54. 2 1 0
  55. 2 2 0
  56. 2 3 1
  57. 2 4 0
  58.  
  59. 3 0 0
  60. 3 1 0
  61. 3 2 0
  62. 3 3 2
  63. 3 4 3
  64.  
  65. 4 0 0
  66. 4 1 1
  67. 4 2 2
  68. 4 3 4
  69. 4 4 3
  70. EOD
  71.  
  72. set multiplot layout 2,1
  73. set size 1,.75
  74. set origin 0.025,.25
  75. plot '$map2' using 2:1:3 with image
  76. set size .85,.25 # <---
  77. set origin 0.025,0
  78. plot sin(x)*cos(x)**2, tan(x)
  79. unset multiplot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement