On Friday 10 November 2006 13:40, Gary Ruben wrote:
[GR]: Does anyone think it might be a good idea to split up the examples
list?
[GR]: It's getting very big now. I pity any poor modem users (I'm sure they
[GR]: still exist). However, I'm not sure that there's a good way to do it.
T
[im]: Sorry if this is an obvious question, but what is the easiest way to
multiply matrices in numpy? Suppose I want to do A=B*C*D. The ' * ' operator
apparently does element wise multiplication, as does the 'multiply' ufunc.
[im] All I could find was the numeric function 'matrix_multipl
On Friday 27 October 2006 19:06, Francesc Altet wrote:
[FA]: for example:
[FA]:
[FA]: In [67]: dtype([('f1', int16)])
[FA]: Out[67]: dtype([('f1', 'http://www.kuleuven.be/cwis/email_disclaimer.htm
-
Using Tomcat
On Friday 27 October 2006 19:01, Francesc Altet wrote:
[FA]: A Divendres 27 Octubre 2006 17:58, Joris De Ridder va escriure:
[FA]: > Hi,
[FA]: >
[FA]: > Is the following behaviour of astype() intentional in NumPy 1.0?
[FA]: >
[FA]: > >>> x
Hi,
The following did once work in NumPy:
>>> dtype([int16])
>>> dtype([[int16]])
>>> dtype([uint,int32])
>>> dtype(['f8','S10'])
but now they all generate a "TypeError: data type not understood". Why?
I could not find the answer in help(dtype), the RecordArrays tutorial on
scipy.org, the NumPy
Hi,
Is the following behaviour of astype() intentional in NumPy 1.0?
>>> x = array([1,2,3])
>>> x.astype(None)
array([ 1., 2., 3.])
That is, the int32 is converted to float64.
J.
Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
-
Forgot the link to the NEL: http://www.scipy.org/Numpy_Example_List
J.
Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff don
Hi,
[SU]: Now, my problem is to construct a degree matrix D which is a 3 * 3
matrix with diagonal elements 4,7,7
You might have a look at the Numpy Example List, at the function diag().
Ciao,
Joris
Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
Hi David,
Numeric, numarray and numpy are three different packages that can
live independently, but that can also coexist if you like so. If you're new
to this packages, you should stick to numpy, as the other ones are
getting phased out.
It's difficult to see what's going wrong without having se
Hi,
Some of my code is heavily using large complex arrays, and I noticed a speed
degression in NumPy 1.0b2 with respect to Numarray. The following code snippet
is an example that on my computer runs 10% faster in Numarray than in NumPy.
>>> A = zeros(100, complex)
>>> for k in range(1000):
..
Hi,
[PL]: s_wsfe is not LAPACK's routine it's a routine from the g2c library.
[PL]: You have to link it in in addition to lapack_lite.
Thanks for the pointer.
Sorry about my ignorance about these things. But is lapack_lite linked
to numpy even if you specify the full lapack library?
Afte
Hi,
In the README.txt of the numpy installation it says that one could use a
site.cfg file to
specify non-standard locations of ATLAS en LAPACK libraries, but it doesn't
explain how.
I have a directory software/atlas3.6.0/lib/Linux_PPROSSE2/ which contains
libcombinedlapack.a libatlas.a
On Monday 31 July 2006 16:29, Bill Baxter wrote:
[BB]: the r_ and c_ situation? From what I understand Travis added these
[BB]: fairly recently and they aren't officially documented anywhere.
I know r_ is fully documented in the (fee-based) reference manual of Travis.
In addition, I've ta
On Friday 30 June 2006 16:29, Erin Sheldon wrote:
[ES]: the pages
[ES]:
[ES]:http://numeric.scipy.org/ -- Looks antiquated
[ES]:
[ES]: are not helping.
My opinion too. If that page is the first page you learn about NumPy,
you won't have a good impression.
Travis, would you
Hi,
For heavy number crunching I would like to include C and/or C++ functions
in my NumPy programs. They should have/give NumPy arrays as input/output.
On http://www.scipy.org/Topical_Software I find several suggestions to wrap
C/C++ code: SWIG, weave, Pyrex, Instant, ... but it's quite difficult
On Friday 23 June 2006 16:34, Sven Schreiber wrote:
[SS]: Keith Goodman schrieb:
[SS]: > How do I make a NxN diagonal matrix with a Nx1 column vector x along
[SS]: > the diagonal?
[SS]: >
[SS]:
[SS]: >>> help(n.diag)
[SS]: Help on function diag in module numpy.lib.twodim_bas
Just to be sure, what exactly is affected when one uses the slower
algorithms when neither BLAS or LAPACK is installed? For sure it
will affect almost every function in numpy.linalg, as they use
LAPACK_lite. And I guess that in numpy.core the dot() function
uses the lite numpy/core/blasdot/_dotb
On Friday 02 June 2006 14:58, Eric Jonas wrote:
[EJ]: Hello! I've been using numeric for a while, and the recent list traffic
[EJ]: prompted me to finally migrate all my old code. On a whim, we were
[EJ]: benchmarking numpy vs numeric and have been lead to the conclusion that
[EJ]: nu
[CB]: I was reacting to a post a while back that suggested pointing people
[CB]: searching for numpy to the main scipy page, which I did not think was
a
[CB]: good idea.
That would be my post :o)
The reasons why I suggested this are
1) www.scipy.org is at the moment the most informa
19 matches
Mail list logo