Chinaunix首页 | 论坛 | 博客
  • 博客访问: 773109
  • 博文数量: 217
  • 博客积分: 2401
  • 博客等级: 大尉
  • 技术积分: 2030
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-16 06:58
个人简介

怎么介绍?

文章分类

全部博文(217)

文章存档

2023年(2)

2022年(3)

2021年(29)

2020年(12)

2019年(5)

2018年(5)

2017年(5)

2016年(3)

2015年(6)

2014年(12)

2013年(16)

2012年(9)

2011年(6)

2010年(15)

2009年(30)

2008年(59)

我的朋友

分类:

2008-11-21 16:16:06

In  I discussed how to call Gnuplot from C and Python language. If you are using Perl, then, here is the script:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/perl
# Generate postscript and png plot with GNUplot from Perl
# Author: Ioan Vancea
# Usage: Give "data file" as an argument for script
 
use strict;
use warnings;
 
my $file = ARGV[0];
 
# POSTSCRIPT
open (GNUPLOT, "|gnuplot");
print GNUPLOT <
close(GNUPLOT);
 
# PNG
open (GNUPLOT, "|gnuplot");
print GNUPLOT <
close(GNUPLOT);
阅读(1044) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~