2020-03-20 23:11:21 +01:00

7 lines
183 B
Julia

# This file was generated, do not modify it. # hide
using Gnuplot
x=[0,1,2]
y=[0,1,2]
Z=[10 10 10; 10 3 10; 10 2 10]
@gsp x y Z "w l lc 'red'"
save(term="png", output="plt3d_ex1.png")