gpt4 book ai didi

gnuplot - Gnuplot 中带有 wxt 终端的两个交互式窗口

转载 作者:行者123 更新时间:2023-12-02 08:42:53 26 4
gpt4 key购买 nike

我经常使用 Gnuplot 的 wxt 终端来进行一些快速的数据检查。我喜欢交互性,这样我可以轻松获得控制和缩放/移动等。

假设我必须遵循脚本

set terminal wxt 0 persist
plot x

set terminal wxt 1 persist
plot x**2

现在,在窗口 1 上我有了交互式控件。但是,在窗口 0 上,此交互式控制丢失了。

我的问题是:如何获得窗口 0 上的交互控制?

我正在使用gnuplot 4.6.2。我见过gnuplot multiple graphs are not interactive但是有关 x11 终端的问题,答案包括打开 gnuplot 的多个实例,这对我来说似乎没有必要。

最佳答案

我相信已经找到了解决此问题的方法。但不确定这是否适用于所有情况。

我的解决方案听起来很明显。我创建了三个文件:configs.pltwxt1.pltwxt2.plt

configs.plt 文件包含:

set style line 1 lc "#e41a1c"
set style line 2 lc "#377eb8"

wxt1.plt 文件包含:

set terminal wxt title "plot sin"
load "configs.plt"
plot sin(x) w l ls 1

wxt2.plt 文件包含:

set terminal wxt title "plot cos"
load "configs.plt"
plot cos(x) w l ls 2

screen capture

唯一无聊的事情是运行两个而不是一个文件。

关于gnuplot - Gnuplot 中带有 wxt 终端的两个交互式窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24037770/

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