Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 619a92f9084d5359442c6f38b85238d7 > files > 98

gnuplot-nox-5.2.2-5.mga7.armv7hl.rpm

#
# create random data, used e.g. by 
# random.dem, ellipse.dem, rugplot.dem, and kdensity2d.dem
#
if (!exist("$random")) {
    load "stat.inc"
    nsamp = 3000
    # Generate N random data points.
    set print $random
    do for [i=1:nsamp] {
	print sprintf("%8.5g %8.5g %8.5g", invnorm(rand(0)), invnorm(rand(0)), invnorm(rand(0)))
    }
    unset print
}