我有这个gnuplot脚本,我每秒都会更新图形:
set term qt noraise
plot "DetumbData" u 1:3 w lp t "X" , "CoilOff" u 1:3 w lp t "X " , "mctr" u 1:3 w lp t "X" , 0.0015 title "+ Threshold",-0.0015 title "- Threshold"
while(1) {
replot
pause 1
}
在绘图窗口中,如果单击图例以禁用特定绘图线,则在执行replot
时会重新启用它。有办法防止这种情况吗?
答案 0 :(得分:0)
在查看Christoph的评论后,我汇编了最新的gnuplot
版本:
G N U P L O T
Version 5.0 patchlevel 6 last modified 2017-03-18
Copyright (C) 1986-1993, 1998, 2004, 2007-2017
Thomas Williams, Colin Kelley and many others
这在这个版本中完美运行。
快速提示,希望使用QT术语支持编译gnuplot:
qt-sdk
包。configure
带有--with-qt=4
的gnuplot来源实际启用QT术语支持。