gpt4 book ai didi

perl - 如何从 perl 调用 gnuplot 脚本

转载 作者:行者123 更新时间:2023-12-01 15:45:11 25 4
gpt4 key购买 nike

我有一个 gnu.gp 文件:

# grphist.conf
set terminal canvas
#Terminal type set to 'canvas'
#Options are ' solid butt size 600,400 fsize 10 lw 1 fontscale 1 standalone'
set output 'output.html'

set grid
set xtic rotate by 90
set style data histograms
set style fill solid 1.00 border -1
#$ cat grphist.conf | gnuplot
plot "c_time" using 2:xtic(1) title "time to number of UIDs"

但是,我必须将其与 perl 脚本集成。

最佳答案

您可以打开一个管道到 gnuplot:

use autodie qw(:all);
open my $GP, '|-', 'gnuplot';

print {$GP} <<'__GNUPLOT__';
set xrange [-5:5];
plot sin(x);
__GNUPLOT__

close $GP;

或者,您可以联系 Chart::Gnuplot在 CPAN 上。

关于perl - 如何从 perl 调用 gnuplot 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11646153/

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