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

7 lines
254 B
Julia

# This file was generated, do not modify it. # hide
using Gnuplot, Random
Random.seed!(1234)
matrix = randn(50,60)
@gsp " " :- # reset session
@gsp matrix "w image" "set view map" "set auto fix"
save(term="pngcairo size 800,800", output="plt3d_ex5.png")