ChinaUnix.net
相关文章推荐:

gnuplot设置字体

本文转载自: http://yinjilong.blogbus.com/logs/509772.html 【thanks】 使用 gnuplot 4.0 将数据和函数转换为专业的图表,gnuplot 4.0 是一种免费分发的绘图工具。本文是 gnuplot 的实践指南,着重讲述了有效使用此工具的一些惯例。 gnuplot 是一种免费分发的绘图工具,可以移植到各种主流平台。它可以下列两种模式之一进行操作:当需要调整和修饰图表使其正常显示时,通过在 gnuplot 提示符中发出命令,可以在交互模式下操作该...

by yexin218 - 网络技术文档中心 - 2008-07-08 17:43:57 阅读(1691) 回复(0)

相关讨论

小弟利用gnuplot画图,必须使用multiplot命令,在网上看到好多资料,但为什么我总是不成功呢,我的意思就是在同一张图里同时画多个图,代码如下 set te png small color picsize 420 180 set multiplot set size 0.5,0.5 set origin 0.0,0.5 plot sin(x) set size 0.5,0.5 set origin 0.0,0.0 plot 1/sin(x) unset multiplot set output '1.png' replot 结果能出来,但不是2张图,谁能告诉我那错了

by lgq_101 - Web开发 - 2008-06-27 06:36:16 阅读(2348) 回复(1)

#!/usr/bin/perl use strict; use FileHandle; use File::Temp qw/ tempfile tempdir /; my ($fh, $filename) = tempfile(DIR => './', UNLINK => 1); foreach my $x (-50 .. 50){     print $fh $x/5," ",sin($x/5),"\n"; } $fh->flush(); open PLOT,"| gnuplot -persist"; PLOT->autoflush(1); print PLOT << "gnuplot_Commands"; plot '$filename' with line pause 1 plot cos(x) gnuplot_Commands cl...

by zllfdd - Perl - 2007-12-29 20:18:56 阅读(2521) 回复(0)

两组数据在下面, 想用第1列和第7列的平方根在对数坐标下做图。同时拟合这些数据,把直线画上去,不知道怎么弄。 我的代码如下, 得到错误的图。 index = 0 set log x set log y plot "temp" in index using 1:(sqrt($2)) r1(x) = a + b * x fit r1(x) "temp" in index using (log($1)):(log(sqrt($2))) via a, b replot r1(x) index = 1 replot "temp" in index using 1:(sqrt($2)) r2(x) = c + d * x fit r2(x) "temp" in inde...

by xiongzm - Shell - 2005-09-23 16:19:10 阅读(919) 回复(0)

不知道那位大哥有关于gnuplot的中文教程,最好从做图,制图,最后把图发布到页面上这一系列的详细教程,最好在来点图例,实在是找不到了, 一书难求,希望能从这找到答案

by lgq_101 - GUI编程 - 2008-06-20 17:33:27 阅读(2109) 回复(0)

Sorry, my English is bad. But I have not Chinese input type in my system. very sorry! I just finish a project that display chart graph. At biganing, I use the JpGraph to create chart. but JpGraph can't create the it better. And JpGraph is very slow if have many data(have max then 50000 line data from SQL server and use it to draw chart). The CPU used 99% when I browser. and must set php.ini t...

by sleep_meng - PHP - 2005-06-12 20:20:11 阅读(1315) 回复(1)

gnuplot 画图的常用指令? 最好 写一个直接运行的脚本。

by w123456 - Shell - 2005-05-25 20:16:59 阅读(742) 回复(0)

是在 1986 年由 Colin kelley 和 Thomas Williams 所发展的绘图 公用程序,可将数学函数或数值资料以平面或立体的图形画在不同种类终端机 或绘图输出设备上。目前已广泛地被人们使用,在 Internet 网络上尚有 newsgroup --- comp.graphics.gnuplot 作为大家交换心得或学习的园地。此 newsgroup 将许多问题□集成 FAQ (Frequently Answered Questions) 并定期刊载。 gnuplot 是一个命令导向的交谈式绘图程序 (command-driven intera...

by 刘健 - 网络技术文档中心 - 2009-01-03 11:58:11 阅读(1884) 回复(0)

gnuplot<<"EOF" plot "datafile" "EOF" 想让datafile数据文件是一个变量,不知如何实现呢?

by letwave - Shell - 2009-11-03 09:25:09 阅读(3632) 回复(1)

我有三个统计指标,如:a1 = 20 , a2 = 40 , a3 = 80 我想画个柱状图,不知道怎么画得出来 谢谢!

by Jass - Shell - 2008-10-07 22:31:20 阅读(1504) 回复(1)