带cairolatex(或epslatex)的3D框(直方图)Gnuplot

时间:2019-01-04 00:21:42

标签: plot latex gnuplot histogram

我想在gnuplot中使用直方图(3D框)绘制3D图形。但是,我使用epslatex或cairolatex,我从gnuplot演示站点使用的演示使用命令:

设置框深

此命令总是在我的脚本中给出错误。

我要获取的图像类似于以下内容: enter image description here 图片链接:http://www.gnuplot.info/demo_cvs/3dboxes.html

我的基本脚本是这样:

function matrix.map( m1, func )
    local mtx = {}

    for i = 1,#m1 do
        mtx[i] = {}
        for j = 1,#m1[1] do
            mtx[i][j] = func(m1[i][j])
        end
    end
    return setmetatable( mtx, matrix_meta )
end

1 个答案:

答案 0 :(得分:1)

绘制3D框的功能是新功能,仅在gnuplot开发版本(5.3)中提供。