gnuplot.nim icon indicating copy to clipboard operation
gnuplot.nim copied to clipboard

Change random to rand in example/dataplot.nim

Open MooersLab opened this issue 3 years ago • 0 comments

Change line 16 from

Y = newSeqWith(len(X), random(10.0))

to

Y = newSeqWith(len(X), rand(10.0))

MooersLab avatar Nov 29 '22 23:11 MooersLab