You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(15) |
Sep
(21) |
Oct
(15) |
Nov
|
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(7) |
Feb
(6) |
Mar
(2) |
Apr
(5) |
May
(6) |
Jun
(3) |
Jul
(4) |
Aug
(4) |
Sep
(3) |
Oct
(14) |
Nov
(16) |
Dec
(10) |
2004 |
Jan
(5) |
Feb
(10) |
Mar
(4) |
Apr
(8) |
May
(1) |
Jun
(5) |
Jul
(5) |
Aug
(4) |
Sep
(10) |
Oct
(3) |
Nov
(4) |
Dec
|
2005 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
(15) |
May
(12) |
Jun
(1) |
Jul
(4) |
Aug
(3) |
Sep
(6) |
Oct
(7) |
Nov
(21) |
Dec
(11) |
2006 |
Jan
(16) |
Feb
(12) |
Mar
(4) |
Apr
(6) |
May
(5) |
Jun
(9) |
Jul
|
Aug
(5) |
Sep
(1) |
Oct
(10) |
Nov
(4) |
Dec
(3) |
2007 |
Jan
(6) |
Feb
(4) |
Mar
(6) |
Apr
(11) |
May
(1) |
Jun
(21) |
Jul
|
Aug
(6) |
Sep
(2) |
Oct
(4) |
Nov
|
Dec
|
2008 |
Jan
(14) |
Feb
(1) |
Mar
(5) |
Apr
(22) |
May
(4) |
Jun
(1) |
Jul
(7) |
Aug
(5) |
Sep
(7) |
Oct
(3) |
Nov
|
Dec
(1) |
2009 |
Jan
(14) |
Feb
(1) |
Mar
(9) |
Apr
(5) |
May
(6) |
Jun
(7) |
Jul
(8) |
Aug
(3) |
Sep
|
Oct
|
Nov
(2) |
Dec
(4) |
2010 |
Jan
(2) |
Feb
|
Mar
(6) |
Apr
(6) |
May
(34) |
Jun
|
Jul
(8) |
Aug
(3) |
Sep
|
Oct
(5) |
Nov
(3) |
Dec
(1) |
2011 |
Jan
|
Feb
(4) |
Mar
(3) |
Apr
|
May
|
Jun
(5) |
Jul
(9) |
Aug
(5) |
Sep
(9) |
Oct
(3) |
Nov
(10) |
Dec
(1) |
2012 |
Jan
(1) |
Feb
(3) |
Mar
(2) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
(3) |
Nov
(2) |
Dec
(9) |
2014 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2016 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
(2) |
9
(1) |
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
|
|
|
|
From: Sean M. <sma...@gm...> - 2014-09-09 01:27:07
|
The problem is still there if I put in a long call (5 - 10 seconds) to time.sleep after the plot. I am running this within a python interpreter, so the python thread gets to run as long as it needs. Just to mess around a bit more, I also tried it by putting it within a file then running it from the shell, with something like $ python2 analysis.py And I'm still getting the same factorize error. On Mon, Sep 8, 2014 at 7:47 AM, Michael Haggerty <mh...@al...> wrote: > On 09/08/2014 02:38 AM, Sean Mattingly wrote: > > I would just like to report my experience / trouble so that others may > > find solace if they have a similar problem. > > > > I have code which makes a basic 2 dimensional Gaussian function. I want > > to make a basic surface plot of this function, just to see what it looks > > like. I have found that using Gnuplot.GridData function with the > > optional filename argument enabled, so that it creates a permanent file, > > works. If I leave out the "filename=test.bin" option, the program > > defaults to the temporary FIFO class, and Gnuplot (4.6) is unable to > > read and properly facorize the matrix. > > Problems like this could occur if the FIFO gets deleted too soon or the > Python thread that is supposed to write into the FIFO is killed too > soon. Does the problem go away if you put a long call to time.sleep > after the plot command? > > It is also possible that newer versions of Gnuplot want to read through > the file twice. This would be incompatible with the FIFO code, which is > only prepared to write the content into the FIFO a single time. > > Michael > > -- > Michael Haggerty > mh...@al... > > |
From: Michael H. <mh...@al...> - 2014-09-08 12:47:54
|
On 09/08/2014 02:38 AM, Sean Mattingly wrote: > I would just like to report my experience / trouble so that others may > find solace if they have a similar problem. > > I have code which makes a basic 2 dimensional Gaussian function. I want > to make a basic surface plot of this function, just to see what it looks > like. I have found that using Gnuplot.GridData function with the > optional filename argument enabled, so that it creates a permanent file, > works. If I leave out the "filename=test.bin" option, the program > defaults to the temporary FIFO class, and Gnuplot (4.6) is unable to > read and properly facorize the matrix. Problems like this could occur if the FIFO gets deleted too soon or the Python thread that is supposed to write into the FIFO is killed too soon. Does the problem go away if you put a long call to time.sleep after the plot command? It is also possible that newer versions of Gnuplot want to read through the file twice. This would be incompatible with the FIFO code, which is only prepared to write the content into the FIFO a single time. Michael -- Michael Haggerty mh...@al... |
From: Sean M. <sma...@gm...> - 2014-09-08 00:38:14
|
Hi, I would just like to report my experience / trouble so that others may find solace if they have a similar problem. I have code which makes a basic 2 dimensional Gaussian function. I want to make a basic surface plot of this function, just to see what it looks like. I have found that using Gnuplot.GridData function with the optional filename argument enabled, so that it creates a permanent file, works. If I leave out the "filename=test.bin" option, the program defaults to the temporary FIFO class, and Gnuplot (4.6) is unable to read and properly facorize the matrix. My code, as a sample: [code] #!/usr/bin/python2 import Gnuplot import numpy as np g1 = Gnuplot.Gnuplot(debug=1) #Let's try making a single contour plot of a windowing function, using #Gnuplot. t = np.linspace(-1000, 1000,2001) / 1e5 tc = 0.004 ts = t [Xg,Yg] = np.meshgrid(ts, ts) corr2win = np.exp(-(Xg/tc)**2 - (Yg/tc)**2 - (Xg * Yg) / (tc)**2) #Plot the window using GNUPlot. g1.title('2 Dimensional Windowing Function') g1('set parametric') g1('set dgrid3d 20, 20, 1') g1.xlabel('Time (s)') g1('set hidden3d') g1('set style data lines') g1('set pm3d') g1.ylabel('TIme (s)') g1.splot(Gnuplot.GridData(corr2win, ts, ts, binary=1, filename='test.bin')) [/code] If I run the splot command without the filename flag in GridData, I get the following error: line 0: File doesn't factorize into full matrix My relevant version information is (all x86_64 builds where applicable): Kernel: x86_64 Linux 3.16.1-1-ARCH Python2.7.8 Ipython 2.2.0 gnuplot 4.6 python2-gnuplot 1.8.3 (as found on the AUR: https://www.archlinux.org/packages/community/any/python2-gnuplot/ Anyways, I'm just putting this out since I didn't find anyone else with a similar problem. Hope this helps. Cheers, Sean |