gpt4 book ai didi

gnuplot - 在 gnuplot 中为多图中的所有图形设置通用颜色框

转载 作者:行者123 更新时间:2023-12-02 12:31:25 24 4
gpt4 key购买 nike

我正在生成一个包含 2 行和 2 列的多重图。我正在使用 pm3d map 来绘制各个图表。生成的图片如下所示:

enter image description here

在这张图中,每个单独的图表都有自己的颜色框和轴标签。我希望所有这些图表都有共同的颜色框,并希望在绘制共同的 x 和 y 轴后给出共同的 i 和 j 索引。我怎样才能做到这一点?提前致谢。

最佳答案

正如 Christoph 提到的,这可以通过 set/unset colorbox 来完成。对于您的情况,我强烈建议您使用图像绘制...而不是使用set pm3d map。但这是双向的,请参阅下面 Christoph 的评论。

您需要的是以下内容(更改详细信息以适应您的需求):

set multiplot
# Set left and right margins for both plots:
set lmargin screen 0.1 ; set rmargin screen 0.8
# Set ranges and *in this case* isosamples to make the graph look better
set xrange [-1:1] ; set yrange [-1:1] ; set isosamples 100
# Options for the first graph: set top and bottom margins and unset colorbox
set tmargin screen 0.9 ; set bmargin screen 0.6 ; unset colorbox
# Plot it
plot "++" u ($1):($2):(sin($1*$2)) with image
# Options for second graph
set tmargin screen 0.4 ; set bmargin screen 0.1
# Set colorbox with customize options
set colorbox user origin 0.85,0.1 size 0.05,0.8
# Plot it
plot "++" u ($1):($2):(cos($1*$2)) with image

瞧:

enter image description here

关于gnuplot - 在 gnuplot 中为多图中的所有图形设置通用颜色框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23973595/

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