如何在 gnuplot 中绘制非常大的数据文件?

如何在 gnuplot 中绘制非常大的数据文件?

我有一个.dat文件50000 行101 列并尝试策划GNUPLOT通过使用命令**plot "test.dat" matrix with image"**。但没有出现绘图。请帮忙。

答案1

可能已经太晚了,但我只是想把解决方案提出来:

set terminal postscript size 12, 10 enhanced color
set output 'worked.eps'
plot 'file_with_57k_rows_and_400_columns.tsv' matrix with image

显然postrscript终端可以工作,但eps有时png不工作。这将导致 eps 文件很大,但ps2pdf以后可能会很方便。

相关内容