7 lines
254 B
Julia
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") |