You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(1) |
Feb
(2) |
Mar
(2) |
Apr
(22) |
May
(14) |
Jun
(18) |
Jul
(19) |
Aug
(7) |
Sep
(4) |
Oct
(6) |
Nov
(12) |
Dec
(14) |
| 2005 |
Jan
(15) |
Feb
(11) |
Mar
(11) |
Apr
(9) |
May
(119) |
Jun
(25) |
Jul
(16) |
Aug
(19) |
Sep
(26) |
Oct
(14) |
Nov
(7) |
Dec
(45) |
| 2006 |
Jan
(22) |
Feb
(7) |
Mar
(11) |
Apr
(11) |
May
(12) |
Jun
(19) |
Jul
(12) |
Aug
(5) |
Sep
(21) |
Oct
(33) |
Nov
(42) |
Dec
(34) |
| 2007 |
Jan
(26) |
Feb
(27) |
Mar
(54) |
Apr
(37) |
May
(68) |
Jun
(81) |
Jul
(55) |
Aug
(86) |
Sep
(60) |
Oct
(33) |
Nov
(33) |
Dec
(47) |
| 2008 |
Jan
(37) |
Feb
(37) |
Mar
(52) |
Apr
(63) |
May
(98) |
Jun
(70) |
Jul
(61) |
Aug
(38) |
Sep
(64) |
Oct
(55) |
Nov
(48) |
Dec
(111) |
| 2009 |
Jan
(68) |
Feb
(83) |
Mar
(102) |
Apr
(140) |
May
(156) |
Jun
(65) |
Jul
(75) |
Aug
(26) |
Sep
(28) |
Oct
(31) |
Nov
(38) |
Dec
(78) |
| 2010 |
Jan
(53) |
Feb
(33) |
Mar
(87) |
Apr
(94) |
May
(77) |
Jun
(84) |
Jul
(66) |
Aug
(74) |
Sep
(53) |
Oct
(40) |
Nov
(38) |
Dec
(31) |
| 2011 |
Jan
(19) |
Feb
(17) |
Mar
(43) |
Apr
(53) |
May
(42) |
Jun
(35) |
Jul
(19) |
Aug
|
Sep
|
Oct
|
Nov
(7) |
Dec
|
| 2012 |
Jan
(1) |
Feb
(1) |
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(1) |
Nov
(1) |
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
| 2017 |
Jan
(1) |
Feb
(3) |
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(2) |
Nov
|
Dec
(1) |
| 2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2021 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
| 2024 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2025 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2026 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Alessandro S. <asa...@ju...> - 2005-06-16 14:32:30
|
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I attach the perspective patch for 4.1 i made some days ago but on a
not so recent cvs snapshot. I did nothing more than applying the 4.0
patch by Andras Barta manually because it had no context. sorry i have
really no time to test it on the current cvs... above all i have no
cvs access from here, as the port is blocked.
The only point which is obscure to me is this chunk of util3d.c i
hacked with no knowledge of what i was doing (because of the
introduction of the define WITH_IMAGE in 4.1):
@@ -1029,6 +1033,15 @@
if (w == 0)
w = 1e-5;
+#ifdef PERSPECTIVE
+#ifdef WITH_IMAGE
+ *xt = ((res[0] * xscaler / w) + xmiddle) *
perspective_eye_distance /
(perspective_eye_distance+perspective_graph_distance-res[2])) + xmiddle);
+ *yt = ((res[1] * yscaler / w) + ymiddle) *
perspective_eye_distance /
(perspective_eye_distance+perspective_graph_distance-res[2])) + ymiddle);
+#else
+ *xt = (unsigned int) (((res[0] * xscaler / w) *
perspective_eye_distance /
(perspective_eye_distance+perspective_graph_distance-res[2])) + xmiddle);
+ *yt = (unsigned int) (((res[1] * yscaler / w) *
perspective_eye_distance /
(perspective_eye_distance+perspective_graph_distance-res[2])) + ymiddle);
+#endif
+#else
#ifdef WITH_IMAGE
*xt = ((res[0] * xscaler / w) + xmiddle);
*yt = ((res[1] * yscaler / w) + ymiddle);
@@ -1036,6 +1049,8 @@
*xt = (unsigned int) ((res[0] * xscaler / w) + xmiddle);
*yt = (unsigned int) ((res[1] * yscaler / w) + ymiddle);
#endif
+#endif
+
}
#endif /* REPLICATE_CODE_FOR_BACKWARD_COMPATIBLE_ROUNDING */
i help this can help, but please if there's any problem with that I
have unfortunately no time until the 23rd... as i'm really in a shit
crick and without paddles.
also, i have a request for a small feature: i'd like to have an
assionometric view switch rather than having to set a huge distance
for the eye as in this minimalistic patch...
cheers and thank you for your great work, gnuplot is always better and
better
alessandro salvatori
Hans-Bernhard Broeker wrote:
> Christopher John Muller wrote:
>
>> Is there an easy way that the viewing point and general direction
>> can be
>> specified,
>
>
> Not with any existing version. There's a patch that enables point
> perspective, IIRC, but guess even that won't discard data behind the
> viewer.
>
>
> -------------------------------------------------------
> SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
> from IBM. Find simple to follow Roadmaps, straightforward articles,
> informative Webcasts and more! Get everything you need to get up to
> speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
> _______________________________________________
> Gnuplot-info mailing list
> Gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1-ecc0.1.6 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFCsYT7zvGMPC6Aeb4RAmaGAKCEgGILKX5p3TohFolykgsjT/I/2gCeOSnS
Cjj6yUJjk1qRkDhotEWSy5U=
=fgaL
-----END PGP SIGNATURE-----
|
|
From: <adm...@ac...> - 2005-06-14 03:40:33
|
The message you emailed to new...@ma..., dated 06/14/05 12:40:11, contains the W32/Lovgate-V virus in the text.zip attachment. Action taken: deleted |
|
From: Lutz M. <ma...@uc...> - 2005-06-13 17:17:00
|
Hi Libor, > I'm using Gnuplot in my project. I'd like to use functions from Gnuplot > 4.0.0 (e.g. pm3d, interactions with mouse and keyboard...). I downloaded > Gnuplot from your site. When I instaled it and lunched it, it said Gnuplot > 3.7 patchlevel 3. Please, do you know where it's possibile to download > indeed Gnuplot 4.0.0 or higher for Linux Mandrake ? where exactly did you get it from? The "official" gnuplot site is www.gnuplot.info, where you can download the gnuplot source code. If you are certain that you installed the 4.0 version, but you still get the 3.7.3 startup screen, you are running the old binary. Try "which gnuplot" to find out which program you are actually running. Lutz |
|
From: <adm...@js...> - 2005-06-13 09:44:41
|
VGhlIG1lc3NhZ2UgeW91IGVtYWlsZWQgdG8gZnJlZEBzdC5yaXRz dW1laS5hYy5qcCwgZGF0ZWQgMDYvMTMvMDUgMTg6NDQ6MzQsIGNv bnRhaW5zIHRoZSBXMzIvTG92Z2F0ZS1WIHZpcnVzIGluIHRoZSBk b2N1bWVudC5waWYgYXR0YWNobWVudC4NCkFjdGlvbiB0YWtlbjog ZGVsZXRlZA0KDQo= |
|
From: Hans-Bernhard B. <br...@ph...> - 2005-06-13 08:16:20
|
Libor =8Aimek wrote: > I'm using Gnuplot in my project. I'd like to use functions from > Gnuplot 4.0.0 (e.g. pm3d, interactions with mouse and keyboard...). I > downloaded Gnuplot from your site.=20 "Our site" being which one? > When I instaled it and lunched it, > it said Gnuplot 3.7 patchlevel 3. Please, do you know where it's > possibile to download indeed Gnuplot 4.0.0 or higher for Linux > Mandrake ? It's none of our business to provide binary packages for specific Linux=20 distributions. That's what you pay distributors to do for you. |
|
From: <adm...@ac...> - 2005-06-13 04:33:35
|
The message you emailed to da...@hi..., dated 06/13/05 13:33:02, contains the W32/Lovgate-V virus in the test.zip attachment. Action taken: deleted |
|
From: <adm...@ac...> - 2005-06-13 04:06:43
|
The message you emailed to ma...@j-..., dated 06/13/05 13:06:09, contains the W32/Lovgate-V virus in the readme.zip attachment. Action taken: deleted |
|
From: <re...@se...> - 2005-06-12 15:22:42
|
Hi, I'm using Gnuplot in my project. I'd like to use functions from Gnuplot 4.0.0 (e.g. pm3d, interactions with mouse and keyboard...). I downloaded Gnuplot from your site. When I instaled it and lunched it, it said Gnuplot 3.7 patchlevel 3. Please, do you know where it's possibile to download indeed Gnuplot 4.0.0 or higher for Linux Mandrake ? Thank you very much. Libor Simek ____________________________________________________________ http://www.listicka.cz |
|
From:
<br...@ph...> - 2005-06-07 15:01:43
|
Erik Luijten wrote:
> Hi,
>
> I just wanted to report a minor mistake in the gnuplot help regarding
> the PDF term. The helpfile states:
>
> Syntax:
> set terminal pdf {fname "<font>"} {fsize <fontsize>}
> {{no}enhanced}
>
> However, this does not work. The correct syntax is:
>
> set terminal pdf {{no}enhanced}
> {fname "<font>"} {fsize <fontsize>}
The syntax is fine as it was. If a command using the order suggested by
it doesn't work, that's a bug in the implementation, not in the docs.
|
|
From:
<br...@ph...> - 2005-06-07 14:58:58
|
Albert Akhriev wrote: > In the previous version of GnuPlot (3.73) it was possible to combine > many plots in a single file. It still is. > The file attached to this letter demonstrates the technique (load > '1.plt'). However, version 4.0 does not parse the same file. What is > the reason? "Does not parse" meaning what, exactly? The file you sent quite certainly doesn't do what it's supposed to (the second data file in each sub-plot is empty, because you put the 'end of file' mark in the wrong place), and it lacks a closing 'unset multiplot', without which it won't generally work. |
|
From: Albert A. <aa...@ma...> - 2005-06-06 08:15:42
|
Dear Friends, In the previous version of GnuPlot (3.73) it was possible to combine many plots in a single file. The file attached to this letter demonstrates the technique (load '1.plt'). However, version 4.0 does not parse the same file. What is the reason? Sincerely, Albert Ahkriev |
|
From: Erik L. <lu...@ui...> - 2005-06-04 18:48:15
|
Hi,
I just wanted to report a minor mistake in the gnuplot help regarding
the PDF term. The helpfile states:
Syntax:
set terminal pdf {fname "<font>"} {fsize <fontsize>}
{{no}enhanced}
However, this does not work. The correct syntax is:
set terminal pdf {{no}enhanced}
{fname "<font>"} {fsize <fontsize>}
Best regards,
Erik
--
Erik Luijten, Asst. Prof. | Dept. of Materials Science & Engineering
lu...@ui... | University of Illinois at Urbana-Champaign
Phone: (217) 244-5622 | Urbana, IL 61801-2920
Fax: (217) 333-2736 | http://simu.mse.uiuc.edu/
|
|
From: Hans-Bernhard B. <br...@ph...> - 2005-06-01 16:13:46
|
Boris wrote: > In multiplot regime: > I have sometimes lack of coincidements of the > coordinate systems for the different diagramms. > p.s. Please answer, is it bug or feature :) Feature. You never told gnuplot you wanted the coordinate systems to be lined up in any particular way --- so they don't. See 'help margin' |
|
From: Boris L. <bor...@ya...> - 2005-06-01 15:38:16
|
Dear developers!
I have one problem with using Gnuplot 4.0 ( as for
Windows as for Linux):
In multiplot regime:
I have sometimes lack of coincidements of the
coordinate systems for the different diagramms.
For example, such consequence of commands give
this effect:
set multiplot
plot sin(x)
set parametric
plot t,t*t
With best regards, Boris Lisyansky
p.s. Please answer, is it bug or feature :)
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|
|
From: <tho...@in...> - 2005-05-30 11:00:15
|
Hello=20
Let me first congratulate to your very good gnuplot Tool.
It is really short and useful !
Here is one hint which may be useful for other users who need 3D Polar
coordinates=20
If you want to plot the 3D polar function r(phi, theta) =20
identify phi =3D=3D u, theta =3D=3D v, and use parametric plot :
fx(u,v) =3D r(u,v) *cos(u)*sin(v)
fy(u,v) =3D r(u,v) *sin(u)*sin(v)
fz(u,v) =3D r(u,v)*cos(v)=20
splot fx(u,v), fy(u,v), fz(u,v) =20
best regards T. Zettler=20
=20
|
|
From: alessandro s. <sa...@gm...> - 2005-05-29 13:29:55
|
for me postscript is fine or even better because of the linestyle
which are much cooler...
yet i have the feeling there could be something to be fixed in pdf
terminal... if it's not me who's doing something bad
that said,=20
small data file "file"... i'm sorry lines will be split and i have no
website where to upload it :(
i put an empty line between every two true lines, so that you can distingui=
sh
----8<------------------------
r 23.832265 0 10 ack 40 ---A--N 9383 0.10 10.25 1 236467 1 0x19 40 0 1
3.6764508678510666e-06 16 0 6 -0.0024412023801214655 22 0 0 0 0 0 0 0
0 0 1 -2.011229448317664e-06 16 0 0 -0.0024814780833126715 22 0 0 0 0
r 23.834665 0 10 ack 40 ---A--N 9383 0.10 10.25 1 236492 1461 0x19 40
0 1 3.5628276378041335e-06 16 0 6 -0.0024412023801214655 22 0 0 0 0 0
0 0 0 0 1 -2.0678461440937213e-06 16 0 0 -0.0024814780833126715 22 0 0
0 0
r 23.837065 0 10 ack 40 ---A--N 9383 0.10 10.25 1 236519 2921 0x19 40
0 1 3.4778519576450506e-06 16 0 6 -0.0024412023801214655 22 0 0 0 0 0
0 0 0 0 1 -1.1615002213360981e-06 16 0 0 -0.0024814780833126715 22 0 0
0 0
r 23.8694 0 10 ack 40 ---A--N 9383 0.10 10.25 2 236890 4381 0x18 40 0
1 -1.1436228823935579e-06 16 0 6 -0.0024447739180673 22 0 0 0 0 0 0 0
0 0 1 2.3347830055975294e-06 16 0 0 -0.0024794051101402204 22 0 0 0 0
r 23.918628 0 10 ack 40 ---A--N 9383 0.10 10.25 2 237363 4637 0x18 40
0 1 3.3365162647180924e-06 16 0 6 -0.002443627500596568 22 0 0 0 0 0 0
0 0 0 1 1.1694656978367135e-06 16 0 0 -0.0024817456874834942 22 0 0 0
0
r 23.94882 0 10 ack 40 ---A--N 9383 0.10 10.25 2 237759 4638 0x18 40 0
1 7.3102099573674195e-07 16 0 6 -0.0024469721812236944 22 0 0 0 0 0 0
0 0 0 1 1.7272854772043544e-06 16 0 0 -0.0024829180568688436 22 0 0 0
0
----8<------------------------
gnuplot more or less minimalist script:
----8<------------------------
set mouse
set view 60, 340
set grid
set key left
set samples 100000
set ticslevel 0
set tics out
set ytics rotate by 60 offset 3
set xtics rotate by -30 offset -3
set term pdf enhanced
set output "dots-vect.pdf"
splot "file" using 22:18:2 notitle w impulses lt 0, \
"file" using (($22-$18)/(1-$18)):18:2 notitle w impulses lt 0, \
"file" using 22:18:($18>0)?$2:1/0 notitle w dots lt 8 lw 4.0, \
"file" using 22:18:($18=3D=3D0)?$2:1/0 notitle w dots lt 2 lw 4.0, \
"file" using 22:18:($18<0)?$2:1/0 notitle w dots lt 3 lw 4.0, \
"file" using 22:18:($18>0)?$2:1/0:($18*($22-1)/(1-$18)):(0):(0)
notitle w vectors filled head lt 8, \
"file" using 22:18:($18=3D=3D0)?$2:1/0:($18*($22-1)/(1-$18)):(0):(0)
notitle w vectors filled head lt 2, \
"file" using 22:18:($18<0)?$2:1/0:($18*($22-1)/(1-$18)):(0):(0)
notitle w vectors filled head lt 3;
pause mouse keypress
---8<---------
thank you very much
cheers
alessandro
On 5/29/05, Hans-Bernhard Broeker <br...@ph...> wrote:
> Alessandro Salvatori wrote:
> > with the pdf terminal, the following code:
> >
> > replot "$i" using
> > 22:18:(\$18>0)?\$2:1/0:(\$18*(\$22-1)/(1-\$18)):(0):(0) notitle w
> > vectors filled head lt 1, \
>=20
> This 'using' specifier list is a bit fishy: you should enclose each
> specifier in () for extended syntax to work correctly, without
> any doubts:
>=20
> using 22:18:(($18>0)?$2:1/0):($18*($22-1)/(1-$18)):(0):(0)
>=20
> Otherwise the ':' of your ternary expression might be confused with the
> same letter used as a separator between specifiers.
>=20
> > PDFlib exception (fatal): [1108] PDF_setlinewidth: Floating-point
> > parameter 'width' has bad value 0.000000
> >
> > with an x11 or a postscript terminal everything goes fine.
>=20
> So PDFlib rejects a linewidth of zero, gnuplot doesn't. Question is
> what is setting a line width of zero here. I don't see any obvious
> candidate. Please reduce the example to the smallest complete script
> still reproducing the effect you can create, then post that here.
>=20
>=20
>=20
> -------------------------------------------------------
> This SF.Net email is sponsored by Yahoo.
> Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
> Search APIs Find out how you can build Yahoo! directly into your own
> Applications - visit http://developer.yahoo.net/?fr=3Doffad-ysdn-ostg-q22=
005
> _______________________________________________
> gnuplot-bugs mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-bugs
>=20
--=20
nadia m'a dit de changer ma signature car elle etait devenue ennuyante
(nadia, ...pas ma signature!!!)
|
|
From: Hans-Bernhard B. <br...@ph...> - 2005-05-29 12:49:18
|
Alessandro Salvatori wrote: > with the pdf terminal, the following code: > > replot "$i" using > 22:18:(\$18>0)?\$2:1/0:(\$18*(\$22-1)/(1-\$18)):(0):(0) notitle w > vectors filled head lt 1, \ This 'using' specifier list is a bit fishy: you should enclose each specifier in () for extended syntax to work correctly, without any doubts: using 22:18:(($18>0)?$2:1/0):($18*($22-1)/(1-$18)):(0):(0) Otherwise the ':' of your ternary expression might be confused with the same letter used as a separator between specifiers. > PDFlib exception (fatal): [1108] PDF_setlinewidth: Floating-point > parameter 'width' has bad value 0.000000 > > with an x11 or a postscript terminal everything goes fine. So PDFlib rejects a linewidth of zero, gnuplot doesn't. Question is what is setting a line width of zero here. I don't see any obvious candidate. Please reduce the example to the smallest complete script still reproducing the effect you can create, then post that here. |
|
From: Alessandro S. <sa...@gm...> - 2005-05-28 20:34:51
|
with the pdf terminal, the following code:
replot "$i" using
22:18:(\$18>0)?\$2:1/0:(\$18*(\$22-1)/(1-\$18)):(0):(0) notitle w
vectors filled head lt 1, \
"$i" using
22:18:(\$18==0)?\$2:1/0:(\$18*(\$22-1)/(1-\$18)):(0):(0) notitle w
vectors filled head lt 2, \
"$i" using 22:18:(\$18<0)?\$2:1/0:(\$18*(\$22-1)/(1-\$18)):(0):(0)
notitle w vectors filled head lt 3;
gives me this error:
PDFlib exception (fatal): [1108] PDF_setlinewidth: Floating-point
parameter 'width' has bad value 0.000000
with an x11 or a postscript terminal everything goes fine.
both pdf and postscript terminals were set with "enhanced color" and the
only previous command was an splot:
splot "$i" using 22:18:(\$18>0)?\$2:1/0 notitle w dots lt 1 lw 4.0, \
"$i" using 22:18:(\$18==0)?\$2:1/0 notitle w dots lt 2 lw 4.0, \
"$i" using 22:18:(\$18<0)?\$2:1/0 notitle w dots lt 3 lw 4.0;
sorry for the dollars and escaping, i'm inside a shell script as well ;-)
thank you
alessandro
|
|
From: Hans-Bernhard B. <br...@ph...> - 2005-05-24 09:27:47
|
Liu, Chin Foon wrote: > I am getting this error when plot ting using gnuplot 4.0 in hp platform: Where does that gnuplot-4.0 binary come from? > gnuplot> set terminal png > > Warning : scale interface is not null_scale - may not work with > multiplot This suggests a serious problem with the compiler used to build gnuplot. It apparently fails to implement function pointers correctly. Any chance you're using an oldish GCC combined HP binutils? > libpng warning: Application was compiled with png.h from libpng-1.0.6 > > libpng warning: Application is running with png.c from libpng-1.2.7 > > gd-png: fatal libpng error: Incompatible libpng version in application > and library I fail to see how this message could be any more self-descriptive. This binary is incorrectly built for your installation. Rebuild it correctly, or get a corrected build from whoever the source is. |
|
From: Liu, C. F. <chi...@in...> - 2005-05-24 05:26:34
|
I am getting this error when plot ting using gnuplot 4.0 in hp platform:
gnuplot> set terminal png
Warning : scale interface is not null_scale - may not work with
multiplot
Terminal type set to 'png'
Options are 'nocrop medium size 640,480 '
gnuplot> set output '/pgfs1/eng/cliu/tmp_tcpskt_matrix_client_4.png'
gnuplot> set title "Histogram"
gnuplot> set xlabel 'time'
gnuplot> set ylabel 'Frequency'
gnuplot> set key outside top
gnuplot> plot '/pgfs1/eng/cliu/in_tmp.tcpskt.matrix.client.4' using 2:3
ti 'Data_Distribution' with lines
libpng warning: Application was compiled with png.h from libpng-1.0.6
libpng warning: Application is running with png.c from libpng-1.2.7
gd-png: fatal libpng error: Incompatible libpng version in application
and library
Segmentation fault
=20
Please advice. Thanks.
=20
=20
Regards,
=20
Liu Chin Foon
Design Automation
Penang Design Center
Tel: 604-2531201
=20
Email : chi...@in... <mailto:chi...@in...>=20
Office : PG12-L2-E4(B830)
=20
=20
|
|
From: <Pos...@sp...> - 2005-05-22 18:32:18
|
WW91ciBtZXNzYWdlDQoNCiAgU3ViamVjdDogP1NQQU0/OiBIaWVyIHNpbmQgd2lyIExlaHJlciBk aWUgZWluemlnZW4gQXVzbGFlbmRlcg0KDQp3YXMgbm90IGRlbGl2ZXJlZCB0bzoNCg0KICBkYXZp ZEBzcGllZ2VsLmRlDQoNCmJlY2F1c2U6DQoNCiAgUmVjaXBpZW50IHVzZXIgbmFtZSBkYXZpZCAo ZGF2aWRAc3BpZWdlbC5kZSkgbm90IHVuaXF1ZS4gIFNldmVyYWwgbWF0Y2hlcyBmb3VuZCBpbiBE b21pbm8gRGlyZWN0b3J5Lg0KDQo= |
|
From: LSMTP f. W. NT v1.1. <pos...@li...> - 2005-05-22 04:25:34
|
An error was detected while processing the enclosed message. A list of the affected recipient follows. This list is in a special format that allows software like LISTSERV to automatically take action on incorrect addresses; you can safely ignore the numeric codes. --> Error description: Error-for: rch...@ho... Error-Code: 3 Error-Text: Mailer mx3.hotmail.com said: "550 Requested action not taken: mailbox unavailable" Error-End: One error reported. ------------------------------ Original message ------------------------------ Received: from smtp01.publishingconcepts.com (10.11.0.121:1205) by list.publishingconcepts.com (LSMTP for Windows NT v1.1b) with SMTP id <3.0...@li...>; Sat, 21 May 2005 23:25:23 -0500 X-Resent-To-Address: rch...@ho... X-Resent-From-Address: ch...@mb... X-Resent-Message: <B00...@sm...> X-Resent-At: Sat, 21 May 2005 23:25:23 -0500 Received: from kchkiowei.net (unverified [67.160.211.90]) by smtp01.publishingconcepts.com (Rockliffe SMTPRA 5.2.5) with SMTP id <B00...@sm...>; Sat, 21 May 2005 23:25:23 -0500 From: gnu...@li... To: ton...@mb... Date: Sun, 22 May 2005 04:09:03 GMT Subject: Auslaender bevorzugt Importance: Normal X-Priority: 3 (Normal) X-MSMail-Priority: Normal MIME-Version: 1.0 Message-ID: <c77...@li...> Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii" Lese selbst: http://www.npd.de/npd_info/deutschland/2005/d0305-14.html Jetzt weiss man auch, wie es dazu kommt, dass Drogen, Waffen & Handy's in die Haende der Knacki's gelangen! |
|
From: <MAI...@be...> - 2005-05-21 23:14:36
|
Failed to deliver to 'ma...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <ma...@li...>... User unknown Failed to deliver to 'pra...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <pra...@li...>... User unknown Failed to deliver to 'mk...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <mk...@li...>... User unknown |
|
From: <MAI...@be...> - 2005-05-21 20:39:18
|
Failed to deliver to 'chi...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <chi...@li...>... User unknown Failed to deliver to 'g_c...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <g_c...@li...>... User unknown Failed to deliver to 'ni...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <ni...@li...>... User unknown Failed to deliver to 'thy...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <thy...@li...>... User unknown Failed to deliver to 'pre...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <pre...@li...>... User unknown Failed to deliver to 'web...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <web...@li...>... User unknown Failed to deliver to 'as...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <as...@li...>... User unknown Failed to deliver to 'ou...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <ou...@li...>... User unknown Failed to deliver to 'gua...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <gua...@li...>... User unknown Failed to deliver to 'in...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <in...@li...>... User unknown Failed to deliver to 'ed...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <ed...@li...>... User unknown Failed to deliver to 'loi...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <loi...@li...>... User unknown Failed to deliver to 'tie...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <tie...@li...>... User unknown Failed to deliver to 'mi...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <mi...@li...>... User unknown Failed to deliver to 'ge...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <ge...@li...>... User unknown Failed to deliver to 'ali...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <ali...@li...>... User unknown Failed to deliver to 'jj...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <jj...@li...>... User unknown Failed to deliver to 'kev...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <kev...@li...>... User unknown Failed to deliver to 'sc...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <sc...@li...>... User unknown Failed to deliver to 'spi...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <spi...@li...>... User unknown Failed to deliver to 'spo...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <spo...@li...>... User unknown Failed to deliver to 'spo...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <spo...@li...>... User unknown Failed to deliver to 'spo...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <spo...@li...>... User unknown Failed to deliver to 'bp...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <bp...@li...>... User unknown Failed to deliver to 'new...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <new...@li...>... User unknown Failed to deliver to 'gj...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <gj...@li...>... User unknown Failed to deliver to 'sf...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <sf...@li...>... User unknown Failed to deliver to 'ca...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <ca...@li...>... User unknown Failed to deliver to 'mi...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <mi...@li...>... User unknown Failed to deliver to 'En...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <En...@li...>... User unknown Failed to deliver to 'bea...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <bea...@li...>... User unknown Failed to deliver to 'uc...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <uc...@li...>... User unknown Failed to deliver to 'pho...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <pho...@li...>... User unknown Failed to deliver to 'pi...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <pi...@li...>... User unknown Failed to deliver to 'mai...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <mai...@li...>... User unknown Failed to deliver to 'bd...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <bd...@li...>... User unknown Failed to deliver to '_us...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <_us...@li...>... User unknown Failed to deliver to '_us...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <_us...@li...>... User unknown Failed to deliver to 'jim...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <jim...@li...>... User unknown Failed to deliver to 'bea...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <bea...@li...>... User unknown Failed to deliver to 'co...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <co...@li...>... User unknown Failed to deliver to 'zap...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <zap...@li...>... User unknown Failed to deliver to 'pic...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <pic...@li...>... User unknown Failed to deliver to 'cc...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <cc...@li...>... User unknown Failed to deliver to 'kim...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <kim...@li...>... User unknown Failed to deliver to 'hr...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <hr...@li...>... User unknown Failed to deliver to 'von...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <von...@li...>... User unknown Failed to deliver to 'kme...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <kme...@li...>... User unknown Failed to deliver to 'wil...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <wil...@li...>... User unknown Failed to deliver to 'b1...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <b1...@li...>... User unknown Failed to deliver to 'jl...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <jl...@li...>... User unknown Failed to deliver to 'gob...@li...' SMTP module(domain [128.32.25.162]) reports: host 128.32.25.162 says: 550 5.1.1 <gob...@li...>... User unknown |
|
From: <pos...@sm...> - 2005-05-21 19:38:35
|
Your message has encountered delivery problems to the following recipient(s): bn...@ya... Delivery failed Failed to deliver to domain yahoo.com after 54 tries. Last error was: I/O error encountered |