You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
(12) |
Sep
(12) |
Oct
(56) |
Nov
(65) |
Dec
(37) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(59) |
Feb
(78) |
Mar
(153) |
Apr
(205) |
May
(184) |
Jun
(123) |
Jul
(171) |
Aug
(156) |
Sep
(190) |
Oct
(120) |
Nov
(154) |
Dec
(223) |
| 2005 |
Jan
(184) |
Feb
(267) |
Mar
(214) |
Apr
(286) |
May
(320) |
Jun
(299) |
Jul
(348) |
Aug
(283) |
Sep
(355) |
Oct
(293) |
Nov
(232) |
Dec
(203) |
| 2006 |
Jan
(352) |
Feb
(358) |
Mar
(403) |
Apr
(313) |
May
(165) |
Jun
(281) |
Jul
(316) |
Aug
(228) |
Sep
(279) |
Oct
(243) |
Nov
(315) |
Dec
(345) |
| 2007 |
Jan
(260) |
Feb
(323) |
Mar
(340) |
Apr
(319) |
May
(290) |
Jun
(296) |
Jul
(221) |
Aug
(292) |
Sep
(242) |
Oct
(248) |
Nov
(242) |
Dec
(332) |
| 2008 |
Jan
(312) |
Feb
(359) |
Mar
(454) |
Apr
(287) |
May
(340) |
Jun
(450) |
Jul
(403) |
Aug
(324) |
Sep
(349) |
Oct
(385) |
Nov
(363) |
Dec
(437) |
| 2009 |
Jan
(500) |
Feb
(301) |
Mar
(409) |
Apr
(486) |
May
(545) |
Jun
(391) |
Jul
(518) |
Aug
(497) |
Sep
(492) |
Oct
(429) |
Nov
(357) |
Dec
(310) |
| 2010 |
Jan
(371) |
Feb
(657) |
Mar
(519) |
Apr
(432) |
May
(312) |
Jun
(416) |
Jul
(477) |
Aug
(386) |
Sep
(419) |
Oct
(435) |
Nov
(320) |
Dec
(202) |
| 2011 |
Jan
(321) |
Feb
(413) |
Mar
(299) |
Apr
(215) |
May
(284) |
Jun
(203) |
Jul
(207) |
Aug
(314) |
Sep
(321) |
Oct
(259) |
Nov
(347) |
Dec
(209) |
| 2012 |
Jan
(322) |
Feb
(414) |
Mar
(377) |
Apr
(179) |
May
(173) |
Jun
(234) |
Jul
(295) |
Aug
(239) |
Sep
(276) |
Oct
(355) |
Nov
(144) |
Dec
(108) |
| 2013 |
Jan
(170) |
Feb
(89) |
Mar
(204) |
Apr
(133) |
May
(142) |
Jun
(89) |
Jul
(160) |
Aug
(180) |
Sep
(69) |
Oct
(136) |
Nov
(83) |
Dec
(32) |
| 2014 |
Jan
(71) |
Feb
(90) |
Mar
(161) |
Apr
(117) |
May
(78) |
Jun
(94) |
Jul
(60) |
Aug
(83) |
Sep
(102) |
Oct
(132) |
Nov
(154) |
Dec
(96) |
| 2015 |
Jan
(45) |
Feb
(138) |
Mar
(176) |
Apr
(132) |
May
(119) |
Jun
(124) |
Jul
(77) |
Aug
(31) |
Sep
(34) |
Oct
(22) |
Nov
(23) |
Dec
(9) |
| 2016 |
Jan
(26) |
Feb
(17) |
Mar
(10) |
Apr
(8) |
May
(4) |
Jun
(8) |
Jul
(6) |
Aug
(5) |
Sep
(9) |
Oct
(4) |
Nov
|
Dec
|
| 2017 |
Jan
(5) |
Feb
(7) |
Mar
(1) |
Apr
(5) |
May
|
Jun
(3) |
Jul
(6) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2025 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
1
(13) |
2
(12) |
3
(3) |
4
(13) |
5
(13) |
6
(2) |
|
7
(5) |
8
(17) |
9
(9) |
10
(10) |
11
(16) |
12
(8) |
13
(10) |
|
14
(1) |
15
(5) |
16
(5) |
17
(7) |
18
(13) |
19
(9) |
20
|
|
21
|
22
(2) |
23
(3) |
24
(5) |
25
(5) |
26
(14) |
27
(1) |
|
28
(2) |
29
(18) |
30
(5) |
31
(22) |
|
|
|
|
From: David D C. <dd...@la...> - 2007-10-02 17:32:52
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Alan, Thanks for the help. This was a big clue. It turns out that what I thought was an array of arrays was actually a list of arrays. If my list was y, running plot(x,array(y).transpose()) solved the problem! Thanks for your help, Dave Alan G Isaac wrote: > On Mon, 01 Oct 2007, David D Clark apparently wrote: >> y=[array([<f(x0)>]),array([<f(x1)>]),array([<f(x2)>])...] >> and x=array([x0,x1,x2,...]) > >> I want to plot the family of curves y=f(x). >> plot(x,y[n]) where n is the nth array in y plots the correct curve, >> however plot(x,y) and plot(x,y[:]) complain about mismatched array >> dimensions. > > > Might you want > plot(x,y.transpose()) > > hth, > Alan Isaac > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users - -- David D. Clark Electrical Engineer P-23, Neutron Science and Technology e-mail mailto:dd...@la... GPG Public key 0x018D6523 available at http://pgp.mit.edu http://www.gnupg.org has information about public key cryptography -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iD8DBQFHAoCvNu7GcwGNZSMRAmlVAJ46vuGaTNmGg0GDvPY7FzAdWhk9sACeIWpY i12r6Utl4pLzyabsxCCP+Dw= =jWKL -----END PGP SIGNATURE----- |
|
From: Eric F. <ef...@ha...> - 2007-10-02 17:22:40
|
John Hunter wrote: > On 10/2/07, Lars Friedrich <lfr...@im...> wrote: >> Hello all, >> >> I am using matplotlib.mlab.psd to find power spectra of measured data. >> Sometimes it happens that I use the automatic zero padding (if the >> length of my measured data is smaller than nFFT) and detrending >> (pylab.detrend_mean) at the same time. >> >> I think that the psd-algorithm does the zero padding *first* and *then* >> uses the detrend function. >> >> For my application this is not good because it introduces low-frequency >> signals that I can see in the spectrum. So the detrending does not work >> as good as it does when there is no zero padding. >> >> What is the reason for this order of applying zero padding and >> detrending? Wouldn't it make sense to change it? > > I wrote this function many years ago and do not remember why I choose > the order pad then detrend, but what you propose makes sense, so let's > let this percolate for a bit and if noone objects I will change it > (and related functions). The change makes sense to me also. Eric |
|
From: John H. <jd...@gm...> - 2007-10-02 13:41:24
|
On 10/2/07, Lars Friedrich <lfr...@im...> wrote: > Hello all, > > I am using matplotlib.mlab.psd to find power spectra of measured data. > Sometimes it happens that I use the automatic zero padding (if the > length of my measured data is smaller than nFFT) and detrending > (pylab.detrend_mean) at the same time. > > I think that the psd-algorithm does the zero padding *first* and *then* > uses the detrend function. > > For my application this is not good because it introduces low-frequency > signals that I can see in the spectrum. So the detrending does not work > as good as it does when there is no zero padding. > > What is the reason for this order of applying zero padding and > detrending? Wouldn't it make sense to change it? I wrote this function many years ago and do not remember why I choose the order pad then detrend, but what you propose makes sense, so let's let this percolate for a bit and if noone objects I will change it (and related functions). JDH |
|
From: Lars F. <lfr...@im...> - 2007-10-02 12:11:11
|
Hello all, I am using matplotlib.mlab.psd to find power spectra of measured data. Sometimes it happens that I use the automatic zero padding (if the length of my measured data is smaller than nFFT) and detrending (pylab.detrend_mean) at the same time. I think that the psd-algorithm does the zero padding *first* and *then* uses the detrend function. For my application this is not good because it introduces low-frequency signals that I can see in the spectrum. So the detrending does not work as good as it does when there is no zero padding. What is the reason for this order of applying zero padding and detrending? Wouldn't it make sense to change it? Thanks Lars -- Dipl.-Ing. Lars Friedrich Photonic Measurement Technology Department of Microsystems Engineering -- IMTEK University of Freiburg Georges-Köhler-Allee 102 D-79110 Freiburg Germany phone: +49-761-203-7531 fax: +49-761-203-7537 room: 01 088 email: lfr...@im... |
|
From: Eric F. <ef...@ha...> - 2007-10-02 08:10:18
|
Daniel O'Connor wrote:
> Hi,
> I am trying to use matplotlib non-interactively but if I don't have
> DISPLAY set then wx barfs even though I have tried forcing the backend,
> etc..
This is characteristic of matplotlib that I think should be considered a
major bug, but I have not gotten around to fixing it: you have to call
matplotlib.use() *before* importing pylab for it to have any effect. If
you call it after the first import of pylab, it is silently ineffective,
hence highly misleading. Many people are caught by this "gotcha".
I will fix this shortly by making matplotlib.use() raise an exception if
matplotlib.backends has already been loaded.
Eric
>
> eg..
> [midget 16:51] ~/projects/beermon >python
> Python 2.5.1 (r251:54863, Aug 14 2007, 11:27:14)
> [GCC 3.4.6 [FreeBSD] 20060305] on freebsd6
> Type "help", "copyright", "credits" or "license" for more information.
>>>> import pylab, matplotlib
> matplotlib.use>>> matplotlib.use('agg')
>>>> fig = pylab.figure()
> Traceback (most recent call last):
> File "<stdin>", line 1, in <module>
> File "/usr/local/lib/python2.5/site-packages/matplotlib/pylab.py", line 859, in figure
> figManager = new_figure_manager(num, figsize=figsize, dpi=dpi, facecolor=facecolor, edgecolor=edgecolor, frameon=frameon, FigureClass=FigureClass, **kwargs)
> File "/usr/local/lib/python2.5/site-packages/matplotlib/backends/backend_wxagg.py", line 134, in new_figure_manager
> backend_wx.wxapp = wx.PySimpleApp()
> File "/usr/local/lib/python2.5/site-packages/wx-2.6-gtk2-unicode/wx/_core.py", line 7791, in __init__
> wx.App.__init__(self, redirect, filename, useBestVisual, clearSigInt)
> File "/usr/local/lib/python2.5/site-packages/wx-2.6-gtk2-unicode/wx/_core.py", line 7700, in __init__
> self._BootstrapApp()
> File "/usr/local/lib/python2.5/site-packages/wx-2.6-gtk2-unicode/wx/_core.py", line 7352, in _BootstrapApp
> return _core_.PyApp__BootstrapApp(*args, **kwargs)
> SystemError: wxEntryStart failed, unable to initialize wxWidgets! (Is DISPLAY set properly?)
>
> Same problem if I try Cairo.
> I had a google but no luck, can anyone help me out?
>
> Thanks.
>
>
>
> ------------------------------------------------------------------------
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2005.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
|
|
From: Daniel O'C. <da...@do...> - 2007-10-02 08:07:00
|
On Tue, 2 Oct 2007, Jouni K. Sepp=E4nen wrote:
> "Daniel O'Connor" <da...@do...> writes:
> > I am trying to use matplotlib non-interactively but if I don't have
> > DISPLAY set then wx barfs even though I have tried forcing the
> > backend, etc..
>
> This should probably be in the FAQ... you need to set the backend
> before you import pylab, because importing pylab reads your
> matplotlibrc file and does all sorts of setup:
>
> import matplotlib
> matplotlib.use('agg')
> import pylab
Ahah, thanks - works much better now, I wondered why I couldn't affect=20
the backend :)
In the FAQ would be very nice!
PS thanks to all the devs for matplotlib, it is very useful!
=2D-=20
Daniel O'Connor software and network engineer
for Genesis Software - http://www.gsoft.com.au
"The nice thing about standards is that there
are so many of them to choose from."
-- Andrew Tanenbaum
GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C
|
|
From: <jk...@ik...> - 2007-10-02 08:01:57
|
"Daniel O'Connor" <da...@do...> writes:
> I am trying to use matplotlib non-interactively but if I don't have
> DISPLAY set then wx barfs even though I have tried forcing the backend,
> etc..
This should probably be in the FAQ... you need to set the backend before
you import pylab, because importing pylab reads your matplotlibrc file
and does all sorts of setup:
import matplotlib
matplotlib.use('agg')
import pylab
--
Jouni K. Seppänen
http://www.iki.fi/jks
|
|
From: Eric F. <ef...@ha...> - 2007-10-02 07:32:58
|
Wayne E. Harlan wrote: > I have a serious problem with my Linux installation of matplotlib. It > segfaults after a very brief display of a plot window outline (no actual > plot within it). Before presenting the details of my problem, I would If a straightforward plotting sequence, such as one of the examples, does this, then it sounds like a broken installation, not a matplotlib bug. > like to download the latest CVS version to make sure this hasn't been > fixed already, however I cannot find any references to CVS in any of the > Matplotlib web pages, except for a reference for it in one of the recent > emails in this list. How do I find it ? See the following: http://sourceforge.net/svn/?group_id=80706 We are using subversion, not cvs. Eric > > Thanks in advance, > > Wayne |
|
From: Daniel O'C. <da...@do...> - 2007-10-02 07:25:27
|
Hi,
I am trying to use matplotlib non-interactively but if I don't have
DISPLAY set then wx barfs even though I have tried forcing the backend,
etc..
eg..
[midget 16:51] ~/projects/beermon >python
Python 2.5.1 (r251:54863, Aug 14 2007, 11:27:14)
[GCC 3.4.6 [FreeBSD] 20060305] on freebsd6
Type "help", "copyright", "credits" or "license" for more information.
>>> import pylab, matplotlib
matplotlib.use>>> matplotlib.use('agg')
>>> fig =3D pylab.figure()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.5/site-packages/matplotlib/pylab.py", line 8=
59, in figure
figManager =3D new_figure_manager(num, figsize=3Dfigsize, dpi=3Ddpi, fa=
cecolor=3Dfacecolor, edgecolor=3Dedgecolor, frameon=3Dframeon, FigureClass=
=3DFigureClass, **kwargs)
File "/usr/local/lib/python2.5/site-packages/matplotlib/backends/backend_=
wxagg.py", line 134, in new_figure_manager
backend_wx.wxapp =3D wx.PySimpleApp()
File "/usr/local/lib/python2.5/site-packages/wx-2.6-gtk2-unicode/wx/_core=
=2Epy", line 7791, in __init__
wx.App.__init__(self, redirect, filename, useBestVisual, clearSigInt)
File "/usr/local/lib/python2.5/site-packages/wx-2.6-gtk2-unicode/wx/_core=
=2Epy", line 7700, in __init__
self._BootstrapApp()
File "/usr/local/lib/python2.5/site-packages/wx-2.6-gtk2-unicode/wx/_core=
=2Epy", line 7352, in _BootstrapApp
return _core_.PyApp__BootstrapApp(*args, **kwargs)
SystemError: wxEntryStart failed, unable to initialize wxWidgets! (Is DISP=
LAY set properly?)
Same problem if I try Cairo.
I had a google but no luck, can anyone help me out?
Thanks.
=2D-=20
Daniel O'Connor software and network engineer
for Genesis Software - http://www.gsoft.com.au
"The nice thing about standards is that there
are so many of them to choose from."
-- Andrew Tanenbaum
GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C
|
|
From: <jk...@ik...> - 2007-10-02 06:49:13
|
"Wayne E. Harlan" <wh...@pa...> writes: > I cannot find any references to CVS in any of the Matplotlib web pages The code is in a Subversion repository: http://sourceforge.net/svn/?group_id=80706 (You probably want to add "/trunk" to the URL as mentioned in the "warning" paragraph.) > It segfaults after a very brief display of a plot window outline (no > actual plot within it). There are some instructions for debugging segfaults in the SEGFAULTS file. -- Jouni K. Seppänen http://www.iki.fi/jks |
|
From: Wayne E. H. <wh...@pa...> - 2007-10-02 05:59:07
|
I have a serious problem with my Linux installation of matplotlib. It segfaults after a very brief display of a plot window outline (no actual plot within it). Before presenting the details of my problem, I would like to download the latest CVS version to make sure this hasn't been fixed already, however I cannot find any references to CVS in any of the Matplotlib web pages, except for a reference for it in one of the recent emails in this list. How do I find it ? Thanks in advance, Wayne |
|
From: Alan G I. <ai...@am...> - 2007-10-02 00:13:09
|
On Mon, 01 Oct 2007, David D Clark apparently wrote: > y=[array([<f(x0)>]),array([<f(x1)>]),array([<f(x2)>])...] > and x=array([x0,x1,x2,...]) > I want to plot the family of curves y=f(x). > plot(x,y[n]) where n is the nth array in y plots the correct curve, > however plot(x,y) and plot(x,y[:]) complain about mismatched array > dimensions. Might you want plot(x,y.transpose()) hth, Alan Isaac |