Ciro Santilli OurBigBook.com  Sponsor 中国独裁统治 China Dictatorship 新疆改造中心、六四事件、法轮功、郝海东、709大抓捕、2015巴拿马文件 邓家贵、低端人口、西藏骚乱
freefem/2d.gnuplot
#!/usr/bin/env gnuplot
# Tested on gnuplot 5.2 patchlevel 8.
stats f using 3 nooutput
set hidden3d
set xyplane at 0
set zrange [STATS_min:STATS_max]
set xlabel 'x'
set ylabel 'y'
set zlabel 'temperature' offset 1,1,1
set cbrange [STATS_min:STATS_max]
do for [i=0:int(STATS_blocks)-1] {
  set title sprintf('t = %d', i)
  splot f index i with lines palette notitle
}