|
From: thse <t.s...@fz...> - 2016-08-08 09:36:29
|
if you want an simple table use the "sprintf" function to generate
one line and then "print" it:
reset
n=1000
set print "Test.dat"
do for [i=1:n] {
tmp = ""
do for [j=1:n] {
tmp = tmp.sprintf("%1.2f\t",rand(0))
}
print tmp
}
unset print
--
View this message in context: http://gnuplot.10905.n7.nabble.com/Generate-table-matrix-with-test-data-tp20304p20305.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|