Re: scipy

2017-12-11 Thread Larry Martell
On Sat, Dec 9, 2017 at 11:43 AM, Thomas Jollans wrote: > > On 08/12/17 23:57, Larry Martell wrote: > > Trying to install scipy on ubuntu-trusty-64 running Python 2.7.6. > > I STRONGLY recommend moving to Python 3 if you can. The scientific > python ecosystem has had good support for Python 3 for y

Re: scipy

2017-12-09 Thread Thomas Jollans
On 08/12/17 23:57, Larry Martell wrote: > Trying to install scipy on ubuntu-trusty-64 running Python 2.7.6. I STRONGLY recommend moving to Python 3 if you can. The scientific python ecosystem has had good support for Python 3 for years now. Many scientific packages, including numpy (the king of s

Re: SciPy 1.0 released!

2017-10-27 Thread Paul Dubois
The DNA of this work goes much further back. After some discussion as mentioned, Jim Hugunin wrote a numerical extension (called Numerical) and after a bit I took over as its coordinator with financial support for my work from Lawrence Livermore National Laboratory. They also supported the Foundati

Re: scipy install error,need help its important

2016-04-18 Thread Oscar Benjamin
On 18 April 2016 at 08:38, Xristos Xristoou wrote: > Τη Δευτέρα, 18 Απριλίου 2016 - 6:53:30 π.μ. UTC+3, ο χρήστης Xristos Xristoou > έγραψε: >> guys i have big proplem i want to install scipy >> but all time show me error >> i have python 2.7 and windows 10 >> i try to use pip install scipy and i

Re: scipy install error,need help its important

2016-04-18 Thread Xristos Xristoou
Τη Δευτέρα, 18 Απριλίου 2016 - 6:53:30 π.μ. UTC+3, ο χρήστης Xristos Xristoou έγραψε: > guys i have big proplem i want to install scipy > but all time show me error > i have python 2.7 and windows 10 > i try to use pip install scipy and i take that error > > raise NotFoundError('no lapack/blas re

Re: scipy install error,need help its important

2016-04-17 Thread Christian Gollwitzer
Am 18.04.16 um 06:38 schrieb Xristos Xristoou: i fllow you with anaconda route and i install scipy without error but in the idle i write import scipy and show me erroe msg no module name scipy,why ? Maybe you run IDLE with the python that you had installed before? Try looking for IDLE withi

Re: scipy install error,need help its important

2016-04-17 Thread Xristos Xristoou
Τη Δευτέρα, 18 Απριλίου 2016 - 6:53:30 π.μ. UTC+3, ο χρήστης Xristos Xristoou έγραψε: > guys i have big proplem i want to install scipy > but all time show me error > i have python 2.7 and windows 10 > i try to use pip install scipy and i take that error > > raise NotFoundError('no lapack/blas re

Re: scipy install error,need help its important

2016-04-17 Thread Xristos Xristoou
Τη Δευτέρα, 18 Απριλίου 2016 - 6:53:30 π.μ. UTC+3, ο χρήστης Xristos Xristoou έγραψε: after google search to many post propose install lapack and atla bt=ut i dont know > guys i have big proplem i want to install scipy > but all time show me error > i have python 2.7 and windows 10 > i try to u

Re: scipy install error,need help its important

2016-04-17 Thread Sayth Renshaw
On Monday, 18 April 2016 13:53:30 UTC+10, Xristos Xristoou wrote: > guys i have big proplem i want to install scipy > but all time show me error > i have python 2.7 and windows 10 > i try to use pip install scipy and i take that error > > raise NotFoundError('no lapack/blas resources found') >

Re: scipy install error,need help its important

2016-04-17 Thread Sayth Renshaw
On Monday, 18 April 2016 13:53:30 UTC+10, Xristos Xristoou wrote: > guys i have big proplem i want to install scipy > but all time show me error > i have python 2.7 and windows 10 > i try to use pip install scipy and i take that error > > raise NotFoundError('no lapack/blas resources found') >

Re: Scipy odeint (LSODA) gives inaccurate results; same code fine in MATLAB ode15s/ode23s

2015-11-07 Thread Michael Torrie
On 11/06/2015 11:54 PM, Christian Gollwitzer wrote: > It is very hard to analyze such a problem, unless you also post the > Matlab code and plot both solutions into a single graph. Also he may have a quicker response posting to the scipy list, where scientists and mathematicians regularly use and

Re: Scipy odeint (LSODA) gives inaccurate results; same code fine in MATLAB ode15s/ode23s

2015-11-06 Thread Christian Gollwitzer
Am 06.11.15 um 23:01 schrieb Abhishek: I have code that runs perfectly well in MATLAB (using ode15s or ode23s) but falters with Scipy odeint. The MATLAB code is for a specific case of the generalized Python code. Here I have tried to reproduce the specific case in Python. The logic in the code is

Re: [SciPy-User] Is there existing code to log-with-bells-on for runtime algorithm diagnostics?

2015-05-06 Thread Rob Clewley
Just to follow up on this thread, for interested readers' future reference... On Tue, Apr 21, 2015 at 4:22 PM, Robert Kern wrote: > On Tue, Apr 21, 2015 at 8:02 PM, Rob Clewley wrote: >> In fact, I'm trying to build a general purpose tool for exploring the >> inner workings of numerical algorith

Re: [SciPy-User] Is there existing code to log-with-bells-on for runtime algorithm diagnostics?

2015-04-21 Thread Cameron Simpson
On 22Apr2015 10:50, Chris Angelico wrote: On Wed, Apr 22, 2015 at 10:11 AM, Cameron Simpson wrote: I have a context manager named "Pfx" which I use liberally in my code like this: from cs.logutils import Pfx, info def load(filename): with Pfx("loading %r", filename): with open(file

Re: [SciPy-User] Is there existing code to log-with-bells-on for runtime algorithm diagnostics?

2015-04-21 Thread Chris Angelico
On Wed, Apr 22, 2015 at 10:11 AM, Cameron Simpson wrote: > I have a context manager named "Pfx" which I use liberally in my code like > this: > > from cs.logutils import Pfx, info > > def load(filename): >with Pfx("loading %r", filename): > with open(filename) as fp: >lineno = 0

Re: [SciPy-User] Is there existing code to log-with-bells-on for runtime algorithm diagnostics?

2015-04-21 Thread Cameron Simpson
On 21Apr2015 16:46, Rob Clewley wrote: All of these ideas and links are very helpful, thank you! Another to add to your list, a be warned that it is baroque. I have a context manager named "Pfx" which I use liberally in my code like this: from cs.logutils import Pfx, info def load(filen

Re: [SciPy-User] Is there existing code to log-with-bells-on for runtime algorithm diagnostics?

2015-04-21 Thread Rob Clewley
All of these ideas and links are very helpful, thank you! -Rob -- https://mail.python.org/mailman/listinfo/python-list

Re: [SciPy-User] Is there existing code to log-with-bells-on for runtime algorithm diagnostics?

2015-04-21 Thread Robert Kern
On Tue, Apr 21, 2015 at 8:02 PM, Rob Clewley wrote: > > Hi, > > I'm in need of a system for logging the step-wise results and > diagnostic metadata about a python function implementation of an > algorithm that I'm developing. The specific algorithm is not of great > consequence except that it's fo

Re: scipy shape

2014-11-18 Thread MRAB
On 2014-11-19 02:30, Abdul Abdul wrote: I came across an example that starts as follows: from scipy.ndimage import filters img = zeros(im.shape) What does the second line mean here? Is it setting the image pixels to zero? What is "shape" here? It looks like it might be using numpy. If 'im' i

Re: scipy errors and gfortran

2014-10-14 Thread slyost
On Monday, October 13, 2014 1:14:27 PM UTC-5, sly...@ilstu.edu wrote: > Trying to get scipy 0.14 running on python 3.4.1 on SLES 11 SP2 LINUX system. > > Scipy seemed to compile fine using the command "python setup.py install" but > when I try the scipy.test("full"), I get errors regarding gfortr

Re: [SciPy-User] Convert 3d NumPy array into 2d

2014-08-27 Thread Maximilian Albert
[source] 2014-08-27 16:08 GMT+01:00 phinn stuart : > Hi everyone, how can I convert (1L, 480L, 1440L) shaped numpy array into > (480L,

Re: scipy error invalid path

2014-01-31 Thread Mark Lawrence
On 31/01/2014 18:33, e-letter wrote: Readers, Used the community edition service of activepython web site to install python27. Within the 'bin' directory, received the following error: $ ./easy_install-2.7 scipy Searching for scipy Reading https://pypi.python.org/simple/scipy/ Best match: scipy

Re: scipy 11 and scipy 12

2013-09-19 Thread Oscar Benjamin
On 19 September 2013 03:42, Steven D'Aprano wrote: >> For Python 2.7 I think that easy_install will be able to install from >> the sourceforge binaries, e.g >> >> easy_install --user scipy >> >> but I may be wrong. I should add that I meant the above as a suggestion for a Windows user. > If

Re: scipy 11 and scipy 12

2013-09-18 Thread Steven D'Aprano
On Wed, 18 Sep 2013 13:28:44 +0100, Oscar Benjamin wrote: > On 18 September 2013 03:48, Steven D'Aprano wrote: >> On Tue, 17 Sep 2013 20:06:44 -0400, Susan Lubbers wrote: >> >>> Our group is a python 2.7 which is installed in a shared area. We >>> have scipy 11 installed in site-packages. How w

Re: scipy 11 and scipy 12

2013-09-18 Thread Oscar Benjamin
On 18 September 2013 03:48, Steven D'Aprano wrote: > On Tue, 17 Sep 2013 20:06:44 -0400, Susan Lubbers wrote: > >> Our group is a python 2.7 which is installed in a shared area. We have >> scipy 11 installed in site-packages. How would I install scipy 12 so >> that I used the shared install of p

Re: scipy 11 and scipy 12

2013-09-17 Thread Steven D'Aprano
On Tue, 17 Sep 2013 20:06:44 -0400, Susan Lubbers wrote: > Our group is a python 2.7 which is installed in a shared area. We have > scipy 11 installed in site-packages. How would I install scipy 12 so > that I used the shared install of python but scipy 12 instead of 11? If you are using Pytho

Re: scipy and numpy for Python3

2012-10-12 Thread chip9munk
ok, i have solved it by the help from the previously mentioned page. python 3.2 should be used, 3.3 has issues with building numpy and scipy. -- http://mail.python.org/mailman/listinfo/python-list

Re: SciPy for Python 2.6?

2012-09-13 Thread MRAB
On 2012-09-13 16:04, garyr wrote: Is there a version for SciPy/numpy available for Python 2.6? I could only find a version for 2.7 on the SciPy site. A search on the Scipy mailing list archive did not turn up anything. The link to the Scipy-user list signup appeared to be broken. There's numpy

Re: SciPy/NumPy: read, write images using Python3

2011-10-15 Thread Christoph Gohlke
On Oct 9, 8:43 am, thegripper wrote: > In SciPy / NumPy, the primary way to read and write images is PIL. But > PIL does not yet support Python3. Is there some good way to read, > write, and resize images in a NumPy and Python3 environment? Try Scikits.image . It uses a

Re: scipy

2011-05-10 Thread Hans Georg Schaathun
On Sun, 8 May 2011 03:44:06 -0700 (PDT), pb wrote: : I', having trouble with scipy. I have followed the instructions at : scipy website and have installed the following on my mac osx 10.6.6 : (...) : I'm assuming I have the wrong version of something, would that be : right? : Does anyone k

Re: scipy

2011-05-09 Thread Algis Kabaila
On Tuesday 10 May 2011 04:13:55 pb wrote: > On May 9, 3:34 pm, Robert Kern wrote: > > On 5/9/11 3:35 AM, pb wrote: > > > On May 9, 12:29 am, Terry Reedy wrote: > > >> On 5/8/2011 6:44 AM, pb wrote: > > >>> Hi, > > >>> I', having trouble with scipy. > > >> > > >> If you do not get an answer here,

Re: scipy

2011-05-09 Thread pb
On May 9, 3:34 pm, Robert Kern wrote: > On 5/9/11 3:35 AM, pb wrote: > > > On May 9, 12:29 am, Terry Reedy  wrote: > >> On 5/8/2011 6:44 AM, pb wrote: > > >>> Hi, > >>> I', having trouble with scipy. > > >> If you do not get an answer here, try the scipy list where scipy experts > >> hang out. You

Re: scipy

2011-05-09 Thread Robert Kern
On 5/9/11 3:35 AM, pb wrote: On May 9, 12:29 am, Terry Reedy wrote: On 5/8/2011 6:44 AM, pb wrote: Hi, I', having trouble with scipy. If you do not get an answer here, try the scipy list where scipy experts hang out. You might also try searching the archives of that list or the scipy bug tr

Re: scipy

2011-05-09 Thread pb
On May 9, 12:29 am, Terry Reedy wrote: > On 5/8/2011 6:44 AM, pb wrote: > > > Hi, > > I', having trouble with scipy. > > If you do not get an answer here, try the scipy list where scipy experts > hang out. You might also try searching the archives of that list or the > scipy bug tracker. > > -- >

Re: scipy

2011-05-08 Thread Terry Reedy
On 5/8/2011 6:44 AM, pb wrote: Hi, I', having trouble with scipy. If you do not get an answer here, try the scipy list where scipy experts hang out. You might also try searching the archives of that list or the scipy bug tracker. -- Terry Jan Reedy -- http://mail.python.org/mailman/listinf

Re: scipy code runs in empty directory, not another

2010-11-13 Thread Terry Reedy
On 11/13/2010 11:41 AM, Dave Angel wrote: On 2:59 PM, Beliavsky wrote: After installing numpy, scipy, and matplotlib for python 2.6 and running the code from http://www.scipy.org/Cookbook/OptimizationDemo1 (stored as xoptimize.py) in a directory with other python codes, I got the error messages

Re: scipy code runs in empty directory, not another

2010-11-13 Thread Dave Angel
On 2:59 PM, Beliavsky wrote: After installing numpy, scipy, and matplotlib for python 2.6 and running the code from http://www.scipy.org/Cookbook/OptimizationDemo1 (stored as xoptimize.py) in a directory with other python codes, I got the error messages C:\python\code\mycode>python xoptimize.py

Re: scipy code runs in empty directory, not another

2010-11-13 Thread Diez B. Roggisch
Beliavsky writes: > After installing numpy, scipy, and matplotlib for python 2.6 and > running the code from http://www.scipy.org/Cookbook/OptimizationDemo1 > (stored as xoptimize.py) in a directory with other python codes, I got > the error messages > > C:\python\code\mycode>python xoptimize.py

Re: scipy / stats : quantiles using sample weights from survey data

2010-08-18 Thread Aahz
In article <94bb6313-1b09-4eeb-9969-07d76048a...@m35g2000prn.googlegroups.com>, Christopher Barrington-Leigh wrote: > >There is a function scipy.stats.mstats.mquantiles that returns >quantiles for a vector of data. >But my data should not be uniformly weighted in an estimate of the >distribution

Re: scipy error undefined symbol: lsame_

2010-04-19 Thread Robert Kern
On 4/19/10 12:15 PM, gerardob wrote: I installed scipy (and all the required libraries) and the following error appears when i tried run a simple example which uses the optimize package of scipy. I tried also numpy alone and it works ( at least for printing numpy.array([10,20,10])) error: Trac

Re: scipy error undefined symbol: lsame_

2010-04-19 Thread Joaquin Abian
On Apr 19, 7:15 pm, gerardob wrote: > I installed scipy (and all the required libraries) and the following error > appears when i tried run a simple example which uses the optimize package of > scipy. I tried also numpy alone and it works ( at least for printing > numpy.array([10,20,10])) > > erro

Re: scipy sparse matrix question

2010-03-09 Thread Robert Kern
On 2010-03-09 14:52 PM, Victor Eijkhout wrote: Terry Reedy wrote: My specific question: what does "for x in A" give me when A is a sparse matrix? Try it and see what you get. Ah, how do I see what I get? If I print it it looks plausible, but I don't know how to pull it apart. It doesn't se

Re: scipy sparse matrix question

2010-03-09 Thread Victor Eijkhout
Terry Reedy wrote: > > My specific question: what does "for x in A" give me when A is a sparse > > matrix? > > Try it and see what you get. Ah, how do I see what I get? If I print it it looks plausible, but I don't know how to pull it apart. It doesn't seem to be an array. Victor. -- Victor

Re: scipy sparse matrix question

2010-03-09 Thread Terry Reedy
On 3/9/2010 1:14 AM, Victor Eijkhout wrote: I can't find any detailed information about scipy.sparse. Scipy questions are best asked on the scipy list, which I suspect you can also access via news.gmane.org. My specific question: what does "for x in A" give me when A is a sparse matrix?

Re: scipy sparse matrix question

2010-03-09 Thread Robert Kern
On 2010-03-09 00:14 AM, Victor Eijkhout wrote: I can't find any detailed information about scipy.sparse. The place to ask would be on scipy-user: http://www.scipy.org/Mailing_Lists My specific question: what does "for x in A" give me when A is a sparse matrix? It seems to yield all nonzero

Re: scipy stats binom_test

2009-06-25 Thread Robert Kern
On 2009-06-25 07:14, dusans wrote: Amm i using the function wrong or ...? cuz in R i get the right value binom_test(3, 5, p=0.8) 0.262 dbinom(3, 5, 0.8) [1] 0.205 The R equivalent of scipy.stats.binom_test() is binom.test(), not dbinom(). If you want the equivalent of dbinom(), use scipy

Re: [SciPy-user] ANN: Python programs for epidemic modelling

2008-10-25 Thread Alan G Isaac
On 10/25/2008 4:14 PM I. Soumpasis apparently wrote: http://blog.deductivethinking.com/?p=29 This is cool. But I do not see a license. May I hope this is released under the new BSD license, like the packages it depends on? Thanks, Alan Isaac -- http://mail.python.org/mailman/listinfo/python-l

Re: Scipy+SQLite crashes... , was: Re: SQLite import fails sometimes ?

2008-05-24 Thread Stef Mientki
hello, through the scipy group I found a solution (no explanation yet), import sqlite3 from scipy import * solves the problem. cheers, Stef Stef Mientki wrote: John Machin wrote: Stef Mientki wrote: I don't know if this matters, but I also use sqlite3 from other than Python programs.

Re: scipy-0.6.0.win32-py2.5.exe does not install

2007-11-23 Thread John Machin
On Nov 22, 8:50 pm, Frank Moyles <[EMAIL PROTECTED]> wrote: > Hi, I want to use SciPy library. I am using W2k, and ActiveState Python > 2.5. I have succesfully numpy, but when I run the > scipy-0.6.0.win32-py2.5.exe (from the downloads section on the SciPy > page), nothing happens - i.e. no informa

Re: scipy-0.6.0.win32-py2.5.exe does not install

2007-11-22 Thread Robert Kern
Frank Moyles wrote: > Hi, I want to use SciPy library. I am using W2k, and ActiveState Python > 2.5. I have succesfully numpy, but when I run the > scipy-0.6.0.win32-py2.5.exe (from the downloads section on the SciPy > page), nothing happens - i.e. no information is printed on the console, > an

Re: Scipy and Mcafee Site Advisor?

2007-07-31 Thread John Nagle
David Lees wrote: > I know scipy.org is legit and supplies widely used and useful python > packages. Can someone explain why my McAfee SiteAdvisor software, flags > scipy.org as a dangerous site? Pardon my ignorance, but is this a > temporary error in the SiteAdvisor database or is there some

Re: scipy 0.52 det crashes python

2007-04-18 Thread Peter Maas
Robert Kern schrieb: > Most likely your build of scipy was built with an ATLAS library that uses SSE2 > instructions (IIRC) while your processor doesn't support those instructions. > The > solution is to rebuild scipy with an ATLAS library built for your platform. Thanks, Robert. -- Peter Maas,

Re: scipy 0.52 det crashes python

2007-04-17 Thread Robert Kern
Peter Maas wrote: > I tried some scipy examples using scipy 0.52, numpy 1.02 and python 2.5 on > a WinXP SP2 machine. numpy.linalg.det() works but scipy.linalg.det() > crashes python. Has anybody experienced this and can point me to a solution? Most likely your build of scipy was built with an ATL

Re: [SciPy-user] About alternatives to Matlab

2006-11-18 Thread Prabhu Ramachandran
> "Brian" == Brian Blais <[EMAIL PROTECTED]> writes: Brian> 3) 3D plotting requires yet-another library. luckily I Brian> haven't had to use this much, but I hope that someday that Brian> it will be part of matplotlib. I'd rather not say anything about this since I have strong op

Re: SciPy Optimization syntax

2006-09-20 Thread Robert Kern
[EMAIL PROTECTED] wrote: > I'm trying to optimize a function using SciPy's optimize.fmin, but am > clearly getting the syntax wrong, and would be grateful for some > guiidance. You will want to ask such questions on the scipy mailing lists. http://www.scipy.org/Mailing_Lists > First, here's t

Re: scipy

2006-07-12 Thread Terry Reedy
"Aage Andersen" <[EMAIL PROTECTED] (REMOVE)> wrote in message news:[EMAIL PROTECTED] >I am exploring the modules scipy and linalg using python under Win XP and >IDLE. [...] > Comments welcome. scipy questions are best discussed on the scipy list. -- http://mail.python.org/mailman/listinfo/

Re: scipy

2006-07-12 Thread Robert Kern
Aage Andersen wrote: > I am exploring the modules scipy and linalg using python under Win XP and > IDLE. > > Defining m=matrix( .. ) and trying to compute the inverse of m: > inverse(m) > > I get an array: > array( .. ) > > This is unfortunate. I would rather have a matrix returned

Re: Scipy: vectorized function does not take scalars as arguments

2006-05-25 Thread ago
I have installed numpy-0.9.6 I haven't tried 0.9.8. -- http://mail.python.org/mailman/listinfo/python-list

Re: Scipy: vectorized function does not take scalars as arguments

2006-05-24 Thread Travis E. Oliphant
ago wrote: > Once I vectorize a function it does not acccept scalars anymore. Es > > def f(x): return x*2 > vf = vectorize(f) > print vf(2) > > AttributeError: 'int' object has no attribute 'astype' > > Is this the intended behaviour? > Vectorize handles scalars in recent versions of NumPy. W

Re: Scipy: vectorized function does not take scalars as arguments

2006-05-24 Thread Robert Kern
ago wrote: > Once I vectorize a function it does not acccept scalars anymore. Es > > def f(x): return x*2 > vf = vectorize(f) > print vf(2) > > AttributeError: 'int' object has no attribute 'astype' > > Is this the intended behaviour? More or less. It would be nice if it transparently handled t

Re: SciPy - I need an example of use of linalg.lstsq()

2006-05-10 Thread I. Myself
Robert Kern wrote: > I. Myself wrote: > >> And it has to run on Windows, so it can't use xplt. >> > > Huh? > > A. xplt runs on Windows, too. > B. xplt has nothing to do with linalg.lstsq(). > C. xplt has been removed from scipy. > Thank you. I have been misled by the Scipy Tutorial by T

Re: SciPy - I need an example of use of linalg.lstsq()

2006-05-09 Thread Robert Kern
I. Myself wrote: > And it has to run on Windows, so it can't use xplt. Huh? A. xplt runs on Windows, too. B. xplt has nothing to do with linalg.lstsq(). C. xplt has been removed from scipy. > I would prefer that it use the simplest multi-dimensional model, z = k + > a*x1 + b*x2 + c*x3 + d*x4 I

Re: scipy/numpy inverse cumulative normal

2006-04-10 Thread noonoo
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > [EMAIL PROTECTED] wrote: > > I was wondering if scipy/numpy has the inverse cumulative normal > > function, ie the function f in this expression > > > > f(scipy.stats.norm.cdf(1.2)) = 1.2 > > > > or more generally, a function f which f

Re: scipy/numpy inverse cumulative normal

2006-04-08 Thread Robert Kern
[EMAIL PROTECTED] wrote: > I was wondering if scipy/numpy has the inverse cumulative normal > function, ie the function f in this expression > > f(scipy.stats.norm.cdf(1.2)) = 1.2 > > or more generally, a function f which fits the criteria > > f(scipy.stats.norm.cdf(x)) = x Look in the file wh

Re: scipy

2006-03-03 Thread computer1
thank you very much. I have dowtnloaded it successfully. -- http://mail.python.org/mailman/listinfo/python-list

Re: scipy

2006-03-03 Thread Robert Kern
computer1 wrote: > I want to install scipy 0.4.6 (windows)on my computer ,but i cannot > download it from www.scipy.org. who can tell me another place to > download it? http://www.scipy.org/Download links to the Sourceforge download site. I assume that you are trying to download the files by simp

Re: SciPy python 2.4 wintel binaries

2005-11-15 Thread jelle
Claudio, Thanks a lot for this link! -- http://mail.python.org/mailman/listinfo/python-list

Re: SciPy python 2.4 wintel binaries

2005-11-14 Thread Claudio Grondi
Is http://heanet.dl.sourceforge.net/sourceforge/scipy/scipy-0.4.3.win32-py2.4.exe not what are you looking for? Claudio "jelle" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Hi Peter, > > I'm aware of the Enthought distribution, which really is my preferred > 2.3 Python dis

Re: SciPy python 2.4 wintel binaries

2005-11-14 Thread jelle
Hi Peter, I'm aware of the Enthought distribution, which really is my preferred 2.3 Python distribution. Problem is that many programs I'm working on would require both 2.4 & SciPy What kind of puzzles me is that SciPy.core is available for wintel 2.4, is that an indication a full SciPy distribut

Re: SciPy python 2.4 wintel binaries

2005-11-12 Thread Peter Maas
jelle schrieb: > I dearly miss having the power of SciPy on my python 2.4 installation. > The topic of SciPy python 2.4 wintel binaries has been discussed before > on this list, but I haven't been able to find a compiled binary. If you really need SciPy, you should install Python 2.3 (Enthought Ed

Re: scipy for python 2.4 on windows

2005-09-21 Thread Z.L.
Thank you. But that thread cannot provide the information on Scipy binaries for python 2.4 on Windows. And the python interpreter installed on my machine is downloaded from www.python.org, not the cygwin version. In fact, all I need is just weave part of Scipy, not all bundle of whole Scipy. Cou

Re: scipy for python 2.4 on windows

2005-09-21 Thread beliavsky
Z.L. wrote: > I am a newbie to python, and have not so much experiences on package > installation and related issues. I am looking for Scipy binaries for > python 2.4 on windows. Please see the recent thread "use SciPy with Python 2.4.1?" for discussion of this. -- http://mail.python.org/mailman

Re: SciPy and NetCDF

2005-08-04 Thread Scott Kilpatrick
Thanks for your help guys! That cleared some stuff up for me. Now I just have to wait for the sysadmin to get back from his vacation, bah. Scott -- http://mail.python.org/mailman/listinfo/python-list

Re: SciPy and NetCDF

2005-07-27 Thread Rocco Moretti
Scott Kilpatrick wrote: > So wherever pycdf does a: > > from Numeric import * > > what is the equivalent for SciPy? i.e. where is the full Numeric module > in SciPy? Python packages are in a pretty flat hierarchy. There really isn't a "SciPy Numeric" and a "pycdf Numeric" - Numeric, as an indep

Re: SciPy and NetCDF

2005-07-27 Thread Robert Kern
Scott Kilpatrick wrote: > Oh ok, so if my sysadmin installs SciPy, then to get the netCDF support > we need he just needs to then install pycdf? 1. Install Numeric. 2. Install Scipy. 3. Install pycdf. Numeric is not, yet, bundled into Scipy. -- Robert Kern [EMAIL PROTECTED] "In the fields of h

Re: SciPy and NetCDF

2005-07-27 Thread Scott Kilpatrick
Oh ok, so if my sysadmin installs SciPy, then to get the netCDF support we need he just needs to then install pycdf? I really appreciate the help. Scott -- http://mail.python.org/mailman/listinfo/python-list

Re: SciPy and NetCDF

2005-07-27 Thread Robert Kern
Scott Kilpatrick wrote: > So wherever pycdf does a: > > from Numeric import * > > what is the equivalent for SciPy? i.e. where is the full Numeric module > in SciPy? Scipy also does a from Numeric import * Numeric isn't contained within Scipy; Scipy uses Numeric like pycdf does. -- Robert

Re: SciPy and NetCDF

2005-07-27 Thread Scott Kilpatrick
So wherever pycdf does a: from Numeric import * what is the equivalent for SciPy? i.e. where is the full Numeric module in SciPy? -- http://mail.python.org/mailman/listinfo/python-list

Re: SciPy and NetCDF

2005-07-26 Thread Robert Kern
[EMAIL PROTECTED] wrote: > I am going to be doing a lot of work with large data sets stored in > various netCDF files, and after checking out the alternatives, I would > really like to go with SciPy. The problem is that SciPy offers no > native netCDF support. I have checked out pycdf at > http://p

Re: SciPy and NetCDF

2005-07-26 Thread [EMAIL PROTECTED]
Also, I am aware that ScientificPython offers netCDF support, but its lack of robust documentation is a big downer. Plus we haven't been able to successfully install it yet. Scott -- http://mail.python.org/mailman/listinfo/python-list

Re: SciPy and NetCDF

2005-07-26 Thread Rocco Moretti
[EMAIL PROTECTED] wrote: > I am going to be doing a lot of work with large data sets stored in > various netCDF files, and after checking out the alternatives, I would > really like to go with SciPy. The problem is that SciPy offers no > native netCDF support. You may be having an issue because t

Re: Scipy - Latex Annotations in plots

2005-07-08 Thread Brian Elmegaard
"Matthias R." <[EMAIL PROTECTED]> writes: > Unfortunately matplotlib is only a 2D-plotting library. > > Do you know another one with 3D-capabilities as well? > That would be very nice, You can quite easily write a function that produces metapost code. Featpost is the best 3d-lib for that, afaik

Re: Scipy - Latex Annotations in plots

2005-07-06 Thread Robert Kern
Matthias R. wrote: > Unfortunately matplotlib is only a 2D-plotting library. > > Do you know another one with 3D-capabilities as well? There's PyX. > That would be very nice, Yes, yes it would. -- Robert Kern [EMAIL PROTECTED] "In the fields of hell where the grass grows high Are the grav

Re: Scipy - Latex Annotations in plots

2005-07-06 Thread Bill Mill
> Robert Kern wrote: > > > fortuneteller wrote: > >> Hello, > >> > >> I'm quite new to python and Scipy. > >> Anyway I want to use it to plot graphs. > >> Does anybody know if there is the possibility to use Latex in SciPy's > >> plotting functions like gplt? > > > > I don't believe so. matplotlib

Re: Scipy - Latex Annotations in plots

2005-07-06 Thread Matthias R.
Unfortunately matplotlib is only a 2D-plotting library. Do you know another one with 3D-capabilities as well? That would be very nice, thank you, Matthias Robert Kern wrote: > fortuneteller wrote: >> Hello, >> >> I'm quite new to python and Scipy. >> Anyway I want to use it to plot graphs.

Re: Scipy - Latex Annotations in plots

2005-07-06 Thread Robert Kern
fortuneteller wrote: > Hello, > > I'm quite new to python and Scipy. > Anyway I want to use it to plot graphs. > Does anybody know if there is the possibility to use Latex in SciPy's > plotting functions like gplt? I don't believe so. matplotlib, however, does have this functionality in recent

Re: SciPy gui_thread Problem

2005-06-18 Thread Robert Kern
Hsuan-Yeh Chang wrote: > Dear SciPy users, If you want to address Scipy users, you should post to the Scipy mailing list. > Can anyone tell me the reason for following error messages: > > import gui_thread gui_thread.start() > > Traceback (most recent call last): > File "/usr/lib/py

Re: scipy for python 2.4

2005-05-28 Thread Robert Kern
Philippe C. Martin wrote: > In order to help, I just tried to compile it, and it seems to have a bunch > of dependencies to worry about: Yes, that's true. Only some kind of LAPACK/BLAS (with ATLAS for preference) is actually necessary. Coincidentally, there are binaries provided if you can't fi

Re: scipy for python 2.4

2005-05-28 Thread Robert Kern
[EMAIL PROTECTED] wrote: > I tried to compile it from source. But it dint work.It was looking for > python2.3 .But I want to install it on pyrthon 2.4 > PLatform you mean I am using RedHat 9.0. is that what you were > referring? > can you point me to the source you are referring. I used the sourse

Re: scipy for python 2.4

2005-05-28 Thread querypk
I tried to compile it from source. But it dint work.It was looking for python2.3 .But I want to install it on pyrthon 2.4 PLatform you mean I am using RedHat 9.0. is that what you were referring? can you point me to the source you are referring. I used the sourse from this link... http://www.scipy

Re: scipy for python 2.4

2005-05-28 Thread Philippe C. Martin
In order to help, I just tried to compile it, and it seems to have a bunch of dependencies to worry about: [EMAIL PROTECTED] SciPy_complete-0.3.2]# python setup.py install fftw_info: NOT AVAILABLE dfftw_info: NOT AVAILABLE FFTW (http://www.fftw.org/) libraries not found. Directori

Re: scipy for python 2.4

2005-05-28 Thread Robert Kern
[EMAIL PROTECTED] wrote: > Did anyone try to install Scipy package on python2.4 linux version. I > see only python2.3 version of scipy released. When I try to install I > get an dependency warning saying scipy cannot find python2.3. > > Can someone point me to python2.4 version of scipy and help m