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
(1) |
2
|
3
|
4
|
5
|
6
|
7
(2) |
8
|
9
|
10
(1) |
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
From: Michael H. <mh...@al...> - 2006-03-10 16:24:34
|
Cecilia Di Chio wrote: > Hi, > I've just started to use Gnuplot-py, and I'm having some trouble in > plotting circles... > I know that to plot circles in gnuplot one has to use the parametric > expression x=sin(t) y=cos(t), and then plot [0:2*pi] r*sin(t)+j, > r*cos(t)+k, where r is the radius and (j,k) the coordinates of the centre... > My problem is that the radius and the coodinates of the centre are > "python object" and gnuplot doesn't allow me to use them inside a > gnuplot call. > To clarify: > ... > for i in range (numOfCircles) > r = sizeOfCircle[0,i] > j = circlePos[:,i,0] > k = circlePos[:,i,1] > ... > > What I would like to do is > g('plot [0:2*pi] r*sin(t)+j, r*cos(t)+k') > but gnuplot-py doesn't recognise r, j and k ("undefined variable" error). > > Can anyone help me to solve this problem? > Thanks very much, > Cecilia gnuplot is not really a great tool for plotting lots and lots of circles. But if you want to do it, you could do something like: import Gnuplot circleparams = [ (0, 0, 1), (1, 0, 0.2), (0.5, 0, 0.5), ] g = Gnuplot.Gnuplot() g('set parametric') g('set trange [0:2*pi]') plotitems = [] for (x,y,r) in circleparams: plotitems.extend([ Gnuplot.Func('%g + %g*cos(t)' % (x,r,)), Gnuplot.Func('%g + %g*sin(t)' % (y,r,)), ]) g.plot(*plotitems) raw_input() Michael |
From: Juho S. <juh...@as...> - 2006-03-07 07:39:22
|
On Mon, 6 Mar 2006, William Baxter wrote: >Does gnuplot-py-1.7 only work with Numeric? Are there plans to make it >compatible with numarray? > I use numarray - I just replaced all import Numeric => import numarray as Numeric in the source and it works for me. I think both Numeric and numarray will be replaced in near future with numpy, so I would rather have numpy support... Of course, something like try: import numpy as NumericPackage except ImportError: try: import numarray as NumericPackage except ImportError: try: import Numeric as NumericPackage except ImportError: raise UnholyError, 'numpy, numarray, or Numeric not found.' would be the best option. -- Juho Schultz e-mail: juh...@as... phone: +358-50-4081854 web: www.astro.helsinki.fi/~jschultz Observatory FIN-00014 University of Helsinki FINLAND |
From: William B. <bb...@wa...> - 2006-03-07 01:17:13
|
Does gnuplot-py-1.7 only work with Numeric? Are there plans to make it compatible with numarray? -- William T. Baxter, Ph.D. Wadsworth Center Empire State Plaza, PO Box 509 Albany, NY 12201-0509 |
From: Cecilia Di C. <cd...@es...> - 2006-03-01 14:34:37
|
Hi, I've just started to use Gnuplot-py, and I'm having some trouble in = plotting circles... I know that to plot circles in gnuplot one has to use the parametric = expression x=3Dsin(t) y=3Dcos(t), and then plot [0:2*pi] r*sin(t)+j, = r*cos(t)+k, where r is the radius and (j,k) the coordinates of the = centre... My problem is that the radius and the coodinates of the centre are = "python object" and gnuplot doesn't allow me to use them inside a = gnuplot call. To clarify: ... for i in range (numOfCircles) r =3D sizeOfCircle[0,i] j =3D circlePos[:,i,0] k =3D circlePos[:,i,1] ... What I would like to do is g('plot [0:2*pi] r*sin(t)+j, r*cos(t)+k') but gnuplot-py doesn't recognise r, j and k ("undefined variable" = error). Can anyone help me to solve this problem? Thanks very much, Cecilia Cecilia Di Chio Department of Computer Science University of Essex Wivenhoe Park Colchester CO4 3SQ, UK phone +44 (0)1206 873111 email cd...@es... http://privatewww.essex.ac.uk/~cdichi/ "If you have a simple idea, state it simply." (W.D. Hamilton) |