SourceForge logo
SourceForge logo
Menu

matplotlib-users — Discussion related to using matplotlib

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
(10)
2
(23)
3
(10)
4
(4)
5
(4)
6
(5)
7
(16)
8
(10)
9
(8)
10
(13)
11
(2)
12
(12)
13
(15)
14
(18)
15
(1)
16
(5)
17
18
(2)
19
(2)
20
(3)
21
(14)
22
(8)
23
(4)
24
25
26
27
(3)
28
(3)
29
(2)
30
(1)
31
(5)

Showing 8 results of 8

From: Fernando P. <Fer...@co...> - 2005年12月22日 20:58:52
Charles R. Twardy wrote:
> For some reason, the FIRST time I try to plot something in an ipython
> session, I get:
> 
> SystemError: ../Objects/moduleobject.c:48: bad argument to internal function
> 
>>/usr/lib/python2.3/site-packages/matplotlib/pylab.py(774)figtext()
> 
> -> ret = gcf().text(*args, **kwargs)
> 
> The last entry in the stacktrace is:
> /usr/lib/python2.3/site-packages/matplotlib/pylab.py in figtext(*args,
> **kwargs) 772 def figtext(*args, **kwargs):
> 773
> --> 774 ret = gcf().text(*args, **kwargs)
> 775 draw_if_interactive()
> 776 return ret
> 
> After that everything works fine. This error is robust: every first
> plot in ipython. Haven't tried command-line yet.
Mmh, this may be the tip of the thread to unravel a long-standing problem 
which has stumped both John and me several times. I've seen the message
SystemError: ../Objects/moduleobject.c:48: bad argument to internal function
when using the GtkAgg backend, but the funny thing is that the issue wouldn't 
appear for John even when we were both running _as the same user, on the same 
box_. The only difference was that I was executing from the console and he 
was logged in remotely. However, in that case it would always silently 
segfault, so we never saw the traceback you are seeing, which made the problem 
very hard to debug without really sinking time into it. But with your 
behavior, we may get more info.
Some things to try which will help:
1. Version info, for everything (OS, python, ipython, mpl, gcc)
2. In ipython, type 'xmode verbose' before testing, and paste the entire 
ipython traceback. I don't care if it's big, for this problem anything can help.
3. Backend info. Try cycling through all the backends, and see if the problem 
appears with all or only with some.
With more details, it may be possible to make some progress on this one...
Cheers,
f
From: Charles R. T. <ct...@gm...> - 2005年12月22日 20:05:30
For some reason, the FIRST time I try to plot something in an ipython
session, I get:
SystemError: ../Objects/moduleobject.c:48: bad argument to internal functio=
n
> /usr/lib/python2.3/site-packages/matplotlib/pylab.py(774)figtext()
-> ret =3D gcf().text(*args, **kwargs)
The last entry in the stacktrace is:
/usr/lib/python2.3/site-packages/matplotlib/pylab.py in figtext(*args,
**kwargs) 772 def figtext(*args, **kwargs):
 773
--> 774 ret =3D gcf().text(*args, **kwargs)
 775 draw_if_interactive()
 776 return ret
After that everything works fine. This error is robust: every first
plot in ipython. Haven't tried command-line yet.
-C
--
Charles R. Twardy
From: Christopher B. <Chr...@no...> - 2005年12月22日 18:17:34
Hi Folks,
Has anyone got any code for making a Wind Rose with MPL? (I'd like to hear 
about other pythonic methods too)
If you don't know what a Wind Rose is, you probably don't have code for making 
one, but just in case you're curious, it's essentially a histogram in polar 
coordinates. It can show you what fraction of the time the wind (or any 
directional phenomenon) is is blowing from what direction.
here's some examples:
http://www.enviroware.com/windrose.htm
Or google it yourself.
If you don't mind self contained, Windows only software!
Thanks
-Chris
PS: Jeff, I cc's you, because you seemed a very likely candidate for having 
something.
-- 
Christopher Barker, Ph.D.
Oceanographer
 		
NOAA/OR&R/HAZMAT (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception
Chr...@no...
From: Clovis G. <cl...@pe...> - 2005年12月22日 13:27:08
Dear John,
Thanks for your support.
Pressing the X/Y key works fine in the pan menu! I tested it!
But my first suggestion would be an additional keyword in the subplot 
command, something like:
ax2 = subplot(312, sharex=ax1, freezey=True)
In fact, there would be necessary 2 additional keywords (freezex, 
freezey) that would disable
limit changes after the subplot creation. Obviouly, if freezey=False or 
None, the axis limits would
be free to be changed by the zooming tool.
Clovis
John Hunter wrote:
>>>>>>"Clovis" == Clovis Goldemberg <cl...@pe...> writes:
>>>>>> 
>>>>>>
>
> Clovis> When I use the zoom feature of the NavigationToolbar, the
> Clovis> xaxis is shared between all 3 graphs. But the yaxis
> Clovis> limits are free. Obviously, they could also be shared but
> Clovis> this is not want I want. I would like to "force" or
> Clovis> "freeze" the Y axis to a given value. Consequently, the
> Clovis> zoom feature would act only along the X axis.
>
>When using the right mouse zoom in pan/zoom mode, if you hold 'x' down
>the zoom will only be in the x direction. ditto for 'y'. It would be
>nice to support this for zoom to rect as well. On the todo list!
>
>JDH
>
>
>-------------------------------------------------------
>This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
>for problems? Stop! Download the new AJAX search engine that makes
>searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
>http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
>_______________________________________________
>Matplotlib-users mailing list
>Mat...@li...
>https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
>
> 
>
From: John H. <jdh...@ac...> - 2005年12月22日 13:01:53
>>>>> "Clovis" == Clovis Goldemberg <cl...@pe...> writes:
 Clovis> When I use the zoom feature of the NavigationToolbar, the
 Clovis> xaxis is shared between all 3 graphs. But the yaxis
 Clovis> limits are free. Obviously, they could also be shared but
 Clovis> this is not want I want. I would like to "force" or
 Clovis> "freeze" the Y axis to a given value. Consequently, the
 Clovis> zoom feature would act only along the X axis.
When using the right mouse zoom in pan/zoom mode, if you hold 'x' down
the zoom will only be in the x direction. ditto for 'y'. It would be
nice to support this for zoom to rect as well. On the todo list!
JDH
From: Clovis G. <cl...@pe...> - 2005年12月22日 12:09:58
Consider the following code (adapted from shared_axis_demo.py):
from pylab import *
t = arange(0.01, 5.0, 0.01)
s1 = sin(2*pi*t)
s2 = sin(4*pi*t)
s3 = sin(6*pi*t)
ax1 = subplot(311)
plot(t,s1)
grid('True')
ax2 = subplot(312, sharex=ax1)
plot(t, s2)
grid('True')
ax3 = subplot(313, sharex=ax1)
plot(t, s3)
grid('True')
show()
When I use the zoom feature of the NavigationToolbar, the xaxis is 
shared between all 3 graphs.
But the yaxis limits are free. Obviously, they could also be shared but 
this is not want I want.
I would like to "force" or "freeze" the Y axis to a given value. 
Consequently, the zoom feature would act only
along the X axis.
Any ideas??
Clovis Goldemberg
University of Sao Paulo
From: Andrew S. <st...@cs...> - 2005年12月22日 04:56:13
Apologies for the double-post.
An update: installing scipy, then rebuilding and reinstalling 
matplotlib get things working using Numeric; numarray still fails. That 
fragility makes me worry something is still wrong, but I just got a 
basic test plot (1,2,3) to display using ipython, and that's good enough 
for me for now. Advice would still be welcome, but is no longer as 
desperate. =)
Also, I should have mentioned that the machine in question is Ubuntu 
5.10 PPC. Tomorrow I'll see if I can get matplotlib successfully 
installed on the MacOS X side...
Hoping this message helps someone else down the line (and that the list 
will forgive me asking and then answering my own question...),
Andrew Stout
Andrew Stout wrote:
> Hi--
> 
> I'm trying to get matplotlib installed on my laptop before my holiday 
> travels begin. I've acquired all the dependencies through synaptic and 
> built matplotlib from source, but when I attempt to import pylab I get 
> the following error:
> 
> andrew@idioteque:~/.matplotlib$ python
> Python 2.4.2 (#2, Sep 30 2005, 22:23:39)
> [GCC 4.0.2 20050808 (prerelease) (Ubuntu 4.0.1-4ubuntu8)] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
> >>> import pylab
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "lines.data_clipping" on line 55 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.major.size" on line 145 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.minor.size" on line 146 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.major.pad" on line 147 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.minor.pad" on line 148 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.color" on line 149 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.labelsize" on line 150 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> Traceback (most recent call last):
> File "<stdin>", line 1, in ?
> File "/usr/lib/python2.4/site-packages/pylab.py", line 1, in ?
> from matplotlib.pylab import *
> File "/usr/lib/python2.4/site-packages/matplotlib/pylab.py", line 194, 
> in ?
> import cm
> File "/usr/lib/python2.4/site-packages/matplotlib/cm.py", line 5, in ?
> import colors
> File "/usr/lib/python2.4/site-packages/matplotlib/colors.py", line 33, 
> in ?
> from numerix import array, arange, take, put, Float, Int, where, \
> File 
> "/usr/lib/python2.4/site-packages/matplotlib/numerix/__init__.py", line 
> 62, in ?
> from Matrix import Matrix
> ImportError: No module named Matrix
> >>>
> 
> This happens with Numeric specified in my matplotlibrc. If I specify 
> numarray, I get a different import error:
> 
> andrew@idioteque:~/.matplotlib$ python
> Python 2.4.2 (#2, Sep 30 2005, 22:23:39)
> [GCC 4.0.2 20050808 (prerelease) (Ubuntu 4.0.1-4ubuntu8)] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
> >>> import pylab
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "lines.data_clipping" on line 55 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.major.size" on line 145 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.minor.size" on line 146 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.major.pad" on line 147 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.minor.pad" on line 148 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.color" on line 149 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> /usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
> UserWarning: Bad key "tick.labelsize" on line 150 in 
> /home/andrew/.matplotlib/matplotlibrc
> warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
> Traceback (most recent call last):
> File "<stdin>", line 1, in ?
> File "/usr/lib/python2.4/site-packages/pylab.py", line 1, in ?
> from matplotlib.pylab import *
> File "/usr/lib/python2.4/site-packages/matplotlib/pylab.py", line 194, 
> in ?
> import cm
> File "/usr/lib/python2.4/site-packages/matplotlib/cm.py", line 5, in ?
> import colors
> File "/usr/lib/python2.4/site-packages/matplotlib/colors.py", line 33, 
> in ?
> from numerix import array, arange, take, put, Float, Int, where, \
> File 
> "/usr/lib/python2.4/site-packages/matplotlib/numerix/__init__.py", line 
> 53, in ?
> from numarray.convolve import cross_correlate, convolve
> ImportError: No module named convolve
> >>>
> 
> 
> So, I suspect something is wrong in Numerix, but I have no idea what, or 
> more importantly how to fix it. Could anyone help? It would be much 
> appreciated.
> 
> Please cc me; I am not subscrived to the list.
> 
> Thanks in advance,
> Andrew Stout
> 
From: Andrew S. <st...@cs...> - 2005年12月22日 04:35:17
Hi--
I'm trying to get matplotlib installed on my laptop before my holiday 
travels begin. I've acquired all the dependencies through synaptic and 
built matplotlib from source, but when I attempt to import pylab I get 
the following error:
andrew@idioteque:~/.matplotlib$ python
Python 2.4.2 (#2, Sep 30 2005, 22:23:39)
[GCC 4.0.2 20050808 (prerelease) (Ubuntu 4.0.1-4ubuntu8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
 >>> import pylab
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "lines.data_clipping" on line 55 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.major.size" on line 145 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.minor.size" on line 146 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.major.pad" on line 147 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.minor.pad" on line 148 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.color" on line 149 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.labelsize" on line 150 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
Traceback (most recent call last):
 File "<stdin>", line 1, in ?
 File "/usr/lib/python2.4/site-packages/pylab.py", line 1, in ?
 from matplotlib.pylab import *
 File "/usr/lib/python2.4/site-packages/matplotlib/pylab.py", line 
194, in ?
 import cm
 File "/usr/lib/python2.4/site-packages/matplotlib/cm.py", line 5, in ?
 import colors
 File "/usr/lib/python2.4/site-packages/matplotlib/colors.py", line 
33, in ?
 from numerix import array, arange, take, put, Float, Int, where, \
 File 
"/usr/lib/python2.4/site-packages/matplotlib/numerix/__init__.py", line 
62, in ?
 from Matrix import Matrix
ImportError: No module named Matrix
 >>>
This happens with Numeric specified in my matplotlibrc. If I specify 
numarray, I get a different import error:
andrew@idioteque:~/.matplotlib$ python
Python 2.4.2 (#2, Sep 30 2005, 22:23:39)
[GCC 4.0.2 20050808 (prerelease) (Ubuntu 4.0.1-4ubuntu8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
 >>> import pylab
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "lines.data_clipping" on line 55 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.major.size" on line 145 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.minor.size" on line 146 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.major.pad" on line 147 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.minor.pad" on line 148 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.color" on line 149 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
/usr/lib/python2.4/site-packages/matplotlib/__init__.py:843: 
UserWarning: Bad key "tick.labelsize" on line 150 in 
/home/andrew/.matplotlib/matplotlibrc
 warnings.warn('Bad key "%s" on line %d in %s' % (key, cnt, fname))
Traceback (most recent call last):
 File "<stdin>", line 1, in ?
 File "/usr/lib/python2.4/site-packages/pylab.py", line 1, in ?
 from matplotlib.pylab import *
 File "/usr/lib/python2.4/site-packages/matplotlib/pylab.py", line 
194, in ?
 import cm
 File "/usr/lib/python2.4/site-packages/matplotlib/cm.py", line 5, in ?
 import colors
 File "/usr/lib/python2.4/site-packages/matplotlib/colors.py", line 
33, in ?
 from numerix import array, arange, take, put, Float, Int, where, \
 File 
"/usr/lib/python2.4/site-packages/matplotlib/numerix/__init__.py", line 
53, in ?
 from numarray.convolve import cross_correlate, convolve
ImportError: No module named convolve
 >>>
So, I suspect something is wrong in Numerix, but I have no idea what, or 
more importantly how to fix it. Could anyone help? It would be much 
appreciated.
Please cc me; I am not subscrived to the list.
Thanks in advance,
Andrew Stout

Showing 8 results of 8

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /