使用流式 feedgnuplot 时如何“清除”图表?

使用流式 feedgnuplot 时如何“清除”图表?

我想要显示一组移动的点。

我尝试使用feedgnuplot为了这:

$ feedgnuplot --domain --stream trigger
1 2
2 3
3 4
replot

之后它显示了 3 个点。现在我想更新它们的位置:

1.1 2.1
2 2.9
3.1 3.8
replot

我看到了新的观点,但是旧的观点还没有消失……

答案1

clear命令,如在https://github.com/dkogan/feedgnuplot#special-data-commands

1 2
2 3
3 4
replot
clear
1.1 2.1
2 2.9
3.1 3.8
replot
clear

相关内容