如何解锁从终端运行的 gnuplot 图表?

问题描述 投票:0回答:1

当我通过终端运行txt脚本时,我无法缩放图形,但如果通过GUI应用程序,那么一切都很好。

gnuplot -persist PLOT_SCRIPT.txt

如何通过这种方式运行脚本来更改比例?

我的脚本:

set grid

unset fit;
x_l = system("more output\\linear.txt");
y_l = system("more +1 output\\linear.txt");

x_n = system("more output\\newton.txt");
y_n = system("more +1 output\\newton.txt"); 

load 'output\\polinom.txt';

set object 1 circle at x_l, y_l size 0.5;
set object 1 circle at x_l, y_l size 0.1 ;

set object 1 circle at x_n, y_n size 0.5;
set object 1 circle at x_n, y_n size 0.1;

plot "data.txt" using 1:2 w l, "data.txt" using 1:2 pt 7 ps 1.5, sin(x) w l lw 4, p(x) w l lw 2

我没有找到

set
unset
选项。

plot command-line-interface gnuplot scaling
1个回答
0
投票

如果你想放大/缩小完成的图片,你应该写 ''设置终端 wxt''

© www.soinside.com 2019 - 2024. All rights reserved.