gpt4 book ai didi

gnuplot:数据矩阵的2D图

转载 作者:行者123 更新时间:2023-12-04 06:58:19 24 4
gpt4 key购买 nike

我如何在Gnuplot中绘制(2D图)具有这种数据结构的矩阵,使用第一行和第一列作为ax和y刻度(第一行的第一个数字是列数)并表示其余值通过颜色映射,以便可以在2D平面上看到它?

4 0.5 0.6 0.7 0.8
1 -6.20 -6.35 -6.59 -6.02
2 -6.39 -6.52 -6.31 -6.00
3 -6.36 -6.48 -6.15 -5.90
4 -5.79 -5.91 -5.87 -5.46

最佳答案

您可以使用matrix nonuniform绘制此数据格式。

要获得热图,您可以绘制with image(规则网格,无插值,每个数据点一个四边形)或绘制with pm3d(还支持不规则网格和插值,绘制四个相邻数据点的一个四边形)。

  • with image
    set autoscale xfix
    set autoscale yfix
    set autoscale cbfix
    plot 'data.dat' matrix nonuniform with image notitle

  • enter image description here
  • pm3d
    set autoscale xfix
    set autoscale yfix
    set autoscale cbfix
    set pm3d map
    splot 'data.dat' matrix nonuniform notitle

  • enter image description here

    关于gnuplot:数据矩阵的2D图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32458753/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com