NumPy is a scientific and numerical computing extension to the Python programming language.

learn more… | top users | synonyms

2
votes
1answer
14 views

How can I replace the summing in numpy matrix multiplication with concatenation in a new dimension?

For each location in the result matrix, instead of storing the dot product of the corresponding row and column in the argument matrices, I would like like to store the element wise product, which will ...
0
votes
1answer
35 views

Numpy shape method returns wrong dimensions

Let's say I have two arrays like: a = array([ 0.36981727, 0.06066488, 0.73031016]) b = array([[ 0.12375904, 0.11647815, 0.56665118], [ 0.9421819 , 0.58797789, 0.26831203], [ ...
2
votes
4answers
91 views

Why is numpy slower than python? How to make code perform better

I revrite my neural net from pure python to numpy, but now it is working even slower. So I tried this two functions: def d(): a = [1,2,3,4,5] b = [10,20,30,40,50] c = [i*j for i,j in ...
-3
votes
1answer
27 views

Python: Determine assigned serial port my hardware connected to [closed]

Microcontroller interfacing with Windows PC via USB CDC creating virtual serial port. Windows assign port number randomly depend on availability, USB port and differs from computer to computer. The ...
1
vote
1answer
31 views

Numpy rows susbstitution

I am new to Numpy and I am not an expert programmer at all... This is my issue: I have array a and array b (b < a). I want to substitute some rows of a with all the rows of b (in order). The ...
5
votes
2answers
78 views

How to speed up iteration over part of a numpy array

I have a large 3 dimensional array in numpy (lets say size 100x100x100). I'd like to iterate over just parts of it many times (approx 70% of elements) and I have a boolean matrix that is the same size ...
2
votes
0answers
34 views

Ellipsis broadcasting in numpy.einsum

I'm having a problem understanding why the following doesn't work: I have an array prefactor that can be three-dimensional or six-dimensional. I have an array dipoles that has four dimensions. The ...
3
votes
1answer
53 views

numpy C-API: scalar multiplication in C

How can I perform an element-wise multiplication of a numpy-nd-array with an arbitrary double-scalar in C? I'm searching for a api-function like this: // C-code ...
4
votes
2answers
69 views

Most efficient property to hash for numpy array

I need to be able to store a numpy array in a dict for caching purposes. Hash speed is important. The array represents indicies, so while the actual identity of the object is not important, the ...
2
votes
1answer
64 views

List as element of list of lists or multidimensional lists as a grid

I am trying to create a lat/lon grid that contains an array of found indices where two conditions are met for a lat/lon combination. This approach might be too complicated, but using a meshgrid or ...
1
vote
2answers
49 views

Comparing elements of an array to a scalar and getting the max in Python

I want to compare the elements of an array to a scalar and get an array with the maximum of the compared values. That's I want to call import numpy as np np.max([1,2,3,4], 3) and want to get ...
1
vote
0answers
52 views

Returning numpy array from a C extension

For the sake of learning something new, I am currently trying to reimplement the numpy.mean() function in C. It should take a 3D array and return a 2D array with the mean of the elements along axis 0. ...
0
votes
1answer
26 views

ValueError when trying to save ndarray (Numpy)

I am trying to translate a project I have in MATLAB to Python+Numpy because MATLAB keeps running out of memory. The file I have is rather long, so I have tried to make a minimal example that shows the ...
0
votes
0answers
35 views

numpy genfromtxt issues in Python3

I'm trying to use genfromtxt with Python3 to read a simple csv file containing strings and numbers. For example, something like (hereinafter "test.csv"): 1,a 2,b 3,c with Python2, the following ...
4
votes
1answer
81 views

Is there a faster way to separate the minimum and maximum of two arrays?

In [3]: f1 = rand(100000) In [5]: f2 = rand(100000) # Obvious method: In [12]: timeit fmin = np.amin((f1, f2), axis=0); fmax = np.amax((f1, f2), axis=0) 10 loops, best of 3: 59.2 ms per loop In ...
2
votes
2answers
26 views

Specify the spherical covariance in numpy's multivariate_normal random sampling

In numpy manual, it is said: Instead of specifying the full covariance matrix, popular approximations include: Spherical covariance (cov is a multiple of the identity matrix) Has anybody ever ...
3
votes
1answer
37 views

General product of multiple tensors in python

In python (preferrably under numpy array framework), what is the best way to do product of multiple tensors at once, instead of doing it one-by-one using numpy.tensordot? Let's suppose we need to do ...
0
votes
2answers
47 views

Python — confused by numpy's piecewise function

I'm trying to implement a piecewise function in Python. Since I'm using quite a few tools from numpy, I simply import everything from it (i.e. from numpy import *). My piecewise function is defined as ...
1
vote
1answer
32 views

Out of memory when using numpy's multivariate_normal random sampliing

I tried to use numpy.random.multivariate_normal to do random samplings on some 30000+ variables, while it always took all of my memory (32G) and then terminated. Actually, the correlation is spherical ...
4
votes
1answer
68 views

Extra Bin with Pandas Resample

I've got a pandas data frame defined like this: last_4_weeks_range = pandas.date_range( start=datetime.datetime(2001, 5, 4), periods=28) ...
2
votes
1answer
63 views

non-negative matrix factorization failing to converge

I'm trying to implement non-negative matrix factorization using the Kullback-Liebler divergence as a similarity measure. The algorithm is described in: ...
1
vote
2answers
63 views

assign all items of an array except those of the given indices

An example will tell things straight forward: import numpy # ------------------------------------------------------------------------ # Edit: # commenting out below `a` assignation for the more ...
2
votes
1answer
38 views

How does numpy.linalg.inv calculate the inverse of an orthogonal matrix?

I'm implementing a LinearTransformation class, which inherits from numpy.matrix and uses numpy.matrix.I to calculate the inverse of the transformation matrix. Does anyone know whether numpy checks ...
0
votes
1answer
60 views

What is the Python (numpy or scipy or Pandas) equivalent for R's adjboxStats function?

I do use R to get the outliers for data set and I do use this snippet in R and it works like it's advertised to! library("robustbase") adjboxStats(c(11232.1, 234.2, 3445532344.3, 34302.3, 203.9, ...
2
votes
0answers
84 views

Numpy high precision

I am using numpy and pyfits to manipulate spectra and I require high precision (something like 8-10 decimal places on a value which might go as high as 10^12). For that the data type "decimal" would ...
-2
votes
1answer
56 views

How to prepare input for time delay neural network in Python? [closed]

Task 1) Let X = [x_0, x_2, ..., x_t] be a numpy.array, how do you take pieces of X and create a new list addressing indexes, say for example: Y = [[x_1, ... ,x_(n-1)], [x_n, ..., x_(2n-1)], ...
1
vote
1answer
40 views

Compare element with previous along axis

My problem is the following. I have a numpy array (it can be 1D for the sake of simplicity) of floats. I have to compare one element with the previous and if the element is lower than the previous, ...
2
votes
1answer
45 views

multiply array of matrices by a vector

I have an array of matrices that I want to multiply by a vector (so the first array in the matrix should be multiplied by the first value in the vector, etc.). import numpy as np # Three ...
1
vote
1answer
68 views

Pandas: fancy indexing a dataframe

I have a Pandas dataframe, df1, that is a year-long 5 minute timeseries with columns A-Z. df1.shape (105121, 26) df1.index <class 'pandas.tseries.index.DatetimeIndex'> [2002-01-02 00:00:00, ...
0
votes
1answer
65 views

Creating a list from user input using a for loop

I am trying to make loop in python where the user input an array 5 times and store them for each i from 1 to 5 in a[i],but my code didn't work.Here is my code : import numpy from numpy import linalg ...
0
votes
1answer
50 views

How to install numpy with pip+mingw in windows?

I have got pip+mingw working in windows. I tested it with pip install cython and it works perfectly. pip install numpy fails however with a long list of error messages. What is the correct way ...
1
vote
0answers
76 views

Is this a bug of scipy RectBivariateSpline?

I am trying to do interpolation as below but the result is seemingly the result of a bug. I want to know if anyone had the same problem. img: input image (numpy ndrarray) of h-by-w img data looks ...
1
vote
0answers
23 views

Vertex Buffer Objects in PyOpenGL - vertex, index and colour

OSX 10.8.3, Python, PyOpenGL. I'm trying to put together a basic terrain-drawing function in PyOpenGL using VBOs. Having a couple of problems I don't know how to resolve, mostly because I don't fully ...
2
votes
2answers
28 views

How do I get a row of a 2d numpy array as 2d array

How do I select a row from a NxM numpy array as an array of size 1xM: > import numpy > a = numpy.array([[1,2], [3,4], [5,6]]) > a array([[1, 2], [3, 4], [5, 6]]) > a.shape ...
-1
votes
1answer
88 views

Match filtering in Python

I'm trying to do a simple match filtering operation on a data set in python (so I tried doing conjugation followed by convolution). However, an error message is showing in the convolution function ...
12
votes
1answer
135 views

Why does iterative elementwise array multiplication slow down in numpy?

The code below reproduces the problem I have encountered in the algorithm I'm currently implementing: import numpy.random as rand import time x = rand.normal(size=(300,50000)) y = ...
1
vote
1answer
42 views

Numpy array comparison using nditer

The code below is giving me the correct answer, but only works when the arrays (plan and meas) are relatively small. When I try to run this over the arrays I actually need to compare (300x300 each), ...
2
votes
2answers
48 views

numpy.arange divide by zero errror

I have used numpy's arange funciton to make the following range: a = n.arange(0,5,1/2) This variable works fine by itself, but when I try putting it anywhere in my script I get an error that says ...
1
vote
2answers
47 views

Numpy array manipulation

I have an array like - x = array([0, 1, 2, 3,4,5]) And I want the output like this - [] [1] [1 2] [1 2 3] [1 2 3 4] [1 2 3 4 5] I tried this code- y = np.array([np.arange(1,i) for i in ...
1
vote
2answers
54 views

check if numpy array is subset of another array

Similar questions have already been asked on SO, but they have more specific constraints and their answers don't apply to my question. Generally speaking, what is the most pythonic way to determine ...
2
votes
2answers
53 views

Perform a reverse cumulative sum on a numpy array

Can anyone recommend a way to do a reverse cumulative sum on a numpy array? Where 'reverse cumulative sum' is defined as below (I welcome any corrections on the name for this procedure): if x = ...
2
votes
1answer
40 views

Parallelism in (I)Python with large blocks of data

I've been toiling with threads and processes for a while now to try to speed up my very parallel job in IPython. I'm not sure how much detail about the function I'm calling is useful, so here's a bash ...
0
votes
0answers
35 views

Can I implement Numpy using django?

Hello I need to know if django is capable to merge with Numpy, Pytables and Pandas because I'll start to work on a Business Intelligence project using Django, thus I read those tools I mentioned ...
2
votes
2answers
138 views

Go matrix library

Are there any libraries for matrix multiplication in Go? I want to write and deploy some scalable and lightning fast ML algorithms on some server nodes, but I'm afraid that the speed and power I'll ...
2
votes
1answer
95 views

plotting multiple plots but whith offset ranges python [closed]

I would like to plot a function of e and nu where e is the eccentricity and nu the true anomaly. I am only looking at elliptical orbits so 0<e<1. However, when I try to plot them against each ...
1
vote
1answer
80 views

Python speeding up the search for a value in a dictionary of ranges

I have a file with a column of values I would like to use to compare with a dictionary that contains two values that together form a range. for instance: File A: Chr1 200 .... Chr3 300 ...
2
votes
4answers
101 views

why can't x[:,0] = x[0] for a single row vector?

I'm relatively new to python but I'm trying to understand something which seems basic. Create a vector: x = np.linspace(0,2,3) Out[38]: array([ 0., 1., 2.]) now why isn't x[:,0] a value ...
2
votes
1answer
44 views

How do I manipulate multiple x-axes to correspond to each other, while on different scales?

I am trying to make a color magnitude diagram similar to: I have three arrays that contain the exact same number of values. x1 = B-V (-.5 to 2) x2 = Temperature. (30,000 to 3000) and needs to be ...
4
votes
3answers
68 views

Python numpy array replacing

I have an array which looks like this for example: array([[ 1, 1, 2, 0, 4], [ 5, 6, 7, 8, 9], [10, 0, 0, 13, 14], [15, 16, 17, 18, 19], [20, 21, 22, 0, 24], ...
1
vote
1answer
70 views

Update initial condition in ODE solver each time step

I am wanting to solve a system of ODEs where for the first 30,000 seconds, I want one of my state variables to start from the same initial value. After those 30,000 seconds, I want to change the ...

1 2 3 4 5 117