ChinaUnix.net
相关文章推荐:

gnuplot multiplot 坐标轴的label与坐标轴的距离

本文转载自: 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)

如果用e2label把根分区的label从/改成别的,对应系统中有哪些文件需要修改呀? 另外二块都装了linux的硬盘,放在同一台机器里,如何能让它们启动linux正常啊,因为二块硬盘都有一个分区的label是/

by hppyhjh - 内核/嵌入技术 - 2005-05-13 11:51:18 阅读(650) 回复(2)

各位大侠,请帮小弟一把,急! 我使用update方式升级ultra 60的solaris2.6系统,升级未完成,就中断了。我重启系统,系统提示corrupt label -- wrong magic number, 我用fsck检查磁盘,发现系统改变我的磁盘的mount点,原来mount点是 /users,现在改成/a/users.我查看了vfstab文件,没有错误。有什么办法修复这个错误? 谢谢!

by wzj78111 - Solaris - 2004-12-28 21:50:59 阅读(1069) 回复(7)

不知道那位大哥有关于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)

今天有台280只能启动到单用户了,发现有块硬盘没有label,打了label数据会丢失吗,怎样查看这块盘以前的分区是怎样的呢?os是solaris10的。

by greenline1982 - Solaris - 2009-05-20 16:26:48 阅读(1713) 回复(5)