Tagged Questions
1
vote
1answer
33 views
numpy: slicing and vectorized looping with 1d and 2d arrays
I want to vectorize the following loops for efficiency:
A = np.array([[0., 1., 0., 2.],
[1., 0., 3., 0.],
[0., 0., 0., 4.],
[2., 0., 4., 0.]]) # quadratic, ...
1
vote
1answer
38 views
Is there a better way of getting elements with x,y coordinates from a numpy array?
It is possible to index a numpy array with a tuple of sequences such that tpl[0] is a a sequence of x coordinates and tple[1] is a sequence of y coordinates. One simply needs to index the array with ...
6
votes
2answers
91 views
Summing values of 2D array on indices
I need to extend this question, which sums values of an array based on indices from a second array. Let A be the result array, B be the index array, and C the array to be summed over. Then A[i] = ...
1
vote
3answers
59 views
Copying Data Between 3D Numpy Arrays Where A Condition Is True
I'd like to copy data from one 3D array to another 3D array at the indices where a condition is true for a different 2D array. All three arrays have the same first two dimensional shapes (x,y coords).
...
0
votes
1answer
42 views
getting indices of non-unique items in an array
Given an integer array I with 0 <= I[j] < 1000, with non-unique integer values I[j], and a 'values' array V with V.shape == (1000, ), how can I create an array R with R.shape == I.shape such ...
1
vote
1answer
63 views
how to efficiently select multiple slices from an array?
Given an array
d = np.random.randn(100)
and an index array
i = np.random.random_integers(low=3, high=d.size - 5, size=20)
how can I efficiently create a 2d array r with
r.shape = (20, 8)
such ...
3
votes
3answers
78 views
How to apply function to only certain array elements?
I have an array x and I want to apply a function f to every item in the matrix that meets some condition. Does Numpy offer a mechanism to make this easy?
Here's an example. My matrix x is supposed to ...
2
votes
1answer
50 views
list of indexes of maximum values in ndarray
I have a ndarray. From this array I need to choose the list of N numbers with biggest values. I found heapq.nlargest to find the N largest entries, but I need to extract the indexes.
I want to build ...
2
votes
1answer
50 views
Most efficient way to extract parts of one array based on another
I have a time series with about 150 million points. I need to zoom in on 3 million points. That is, I need to extract the 100 time points surrounding each of those 3 million areas of interest in this ...
4
votes
1answer
34 views
How to index dynamically N-dimensions by using Numpy?
When I input a value of N, a N-dimensional matrix is generated automatically. I want to index automatically the N-dimensional matrix based on the value of N.
For example, if the dimension of the ...
3
votes
1answer
67 views
1d list indexing python: enhance MaskableList
A common problem of mine is the following:
As input I have (n is some int >1)
W = numpy.array(...)
L = list(...)
where
len(W) == n
>> true
shape(L)[0] == n
>> true
And I want to ...
3
votes
3answers
206 views
Fast numpy fancy indexing
My code for slicing a numpy array (via fancy indexing) is very slow. It is currently a bottleneck in program.
a.shape
(3218, 6)
ts = time.time(); a[rows][:, cols]; te = time.time(); print('%.8f' % ...
1
vote
3answers
245 views
Numpy/Python: Array iteration without for-loop
So it's another n-dimensional array question:
I want to be able to compare each value in an n-dimensional arrays with its neighbours. For example if a is the array which is 2-dimensional i want to be ...
0
votes
2answers
109 views
Numpy: Comparison within Multidimensional array values
I have a 2D array in the following form:
[[X1, X2, ..., XN]
[Y1, Y2, ..., YN]]
For each Xi greater than lower_limit_X and less than upper_limit_X, I would like to get the number of Yi's that are ...
1
vote
1answer
72 views
Get array elements from index to end
Suppose we have the following array:
import numpy as np
a = np.arange(1, 10)
a = a.reshape(len(a), 1)
array([[1],
[2],
[3],
[4],
[5],
[6],
[7],
[8],
...
0
votes
2answers
228 views
Multiple slice in list indexing for numpy array
Numpy array admits a list of indices, for example
a = np.arange(1000)
l = list([1,44,66,33,90,345])
a[l] = 22
But this method don't work if we want to use a multiple slice indexing or indices plus ...
1
vote
1answer
105 views
vectorized assignment statement for selected elements of 2d array in numpy
I am a beginner in python. I was wondering if there is a "good" way to do this operation without using for loops.
Consider the problem
u = zeros((4,2))
u_pres = array([100,200,300])
row_col_index = ...
0
votes
2answers
63 views
Indexing columns (or rows) in a numpy matrix with a Boolean list
Given a numpy matrix A of shape (m,n) and a list ind of Boolean values with length n, I want to extract the columns of A where the corresponding element of the Boolean list is true.
My first naive ...
2
votes
1answer
94 views
numpy array slicing, get one from each third dimension
I have a 3D array of data. I have a 2D array of indices, where the shape matches the first two dimensions of the data array, and it specfies the indices I want to pluck from the data array to make a ...
9
votes
2answers
134 views
2D numpy array does not give an error when indexing with strings containing digits
When I create a one dimensional array in numpy and use a string (containing digits) to index it, I get an error as expected:
>>> import numpy as np
>>> a = np.arange(15)
...
3
votes
7answers
167 views
Numpy Indexing: Return the rest
A simply example of numpy indexing:
In: a = numpy.arange(10)
In: sel_id = numpy.arange(5)
In: a[sel_id]
Out: array([0,1,2,3,4])
How do I return the rest of the array that are not indexed by sel_id? ...
0
votes
1answer
182 views
Using : operator to index numpy.ndarray of numpy.void (as output by numy.genfromtxt)
I generate data using numpy.genfromtxt like this:
ConvertToDate = lambda s:datetime.strptime(s,"%d/%m/%Y")
data= numpy.genfromtxt(open("PSECSkew.csv", "rb"),
delimiter=',',
...
0
votes
1answer
58 views
Slices along arbitrary axis
I have a numpy array A such that
A.shape[axis] = n+1.
Now I want to construct two slices B and C of A by selecting the indices 0, .., n-1 and 1, ..., n respectively along the axis axis. Thus
...
3
votes
1answer
381 views
indexing into numpy's mgrid
I use numpy.mgrid to generate "coordinate index arrays"
y, x = np.mgrid[0:3, 0:2]
print x
array([[0, 1],
[0, 1],
[0, 1]])
In many situations, I take some slice through these arrays ...
1
vote
1answer
118 views
Function to slice indices in Numpy
I have two index arrays and I want to return all the indices in between, like a slice function, manually it would look like this:
ind1 = np.array([2,6])
ind2 = np.array([2,3])
final = ...
1
vote
3answers
659 views
Python Dynamic Array allocation, Matlab style
I'm trying to move a few Matlab libraries that I've built to the python environment. So far, the biggest issue I faced is the dynamic allocation of arrays based on index specification. For example, ...
7
votes
1answer
223 views
How to cleanly index numpy arrays with arrays (or anything else that supports addition so that it can be offset)
The easiest way to explain my question may be with an example, so let me define some arrays:
>>> test = arange(25).reshape((5,5))
>>> test
array([[ 0, 1, 2, 3, 4],
[ 5, ...
0
votes
2answers
457 views
Replace subarrays in numpy
Given an array,
>>> n = 2
>>> a = numpy.array([[[1,1,1],[1,2,3],[1,3,4]]]*n)
>>> a
array([[[1, 1, 1],
[1, 2, 3],
[1, 3, 4]],
[[1, 1, 1],
[1, ...
1
vote
1answer
142 views
Concise way to get NumPy to return array of proper shape after logical indexing, without doing a reshape?
Say I have the array:
>>> import numpy as np
>>> myarr = np.array([[1],[2],[3],[2]])
and I want to use logical indexing to return the sub-array where myarr is not equal to 2.
...
4
votes
1answer
828 views
How to flatten axes of a multidimensional without making copies in NumPy?
I am wondering if there is a way to flatten a multidimensional array (i.e., of type ndarray) along given axes without making copies in NumPy. For example, I have an array of 2D images and I wish to ...
2
votes
4answers
635 views
Indexing NumPy 2D array with another 2D array
I have something like
m = array([[1, 2],
[4, 5],
[7, 8],
[6, 2]])
and
select = array([0,1,0,0])
My target is
result = array([1, 5, 7, 6])
I tried _ix as I ...
5
votes
1answer
172 views
Indexing with boolean arrays into multidimensional arrays using numpy
I am new to using numpy and one thing that I really don't understand is indexing arrays.
In the tentative tutorial there is this example:
>>> a = arange(12).reshape(3,4)
>>> b1 = ...
0
votes
1answer
174 views
numpy sub-gridding an cartesian product
So I have a cartesian product c of two (or more) vectors, a and b. I want to get a cartesian product of a[::i] and b[::j] from c.
This means the new cartesian product will skip every ith a-item, and ...
12
votes
1answer
666 views
Numpy fancy indexing and assignment
Normally numpy forces the left and right side of an assignment to match, so for example if I do a[:] = b, b must be the same shape or broadcast to the same shape as a. But there seems to be an ...
4
votes
1answer
841 views
Numpy fancy indexing in multiple dimensions
Let's say I have an numpy array A of size n x m x k and another array B of size n x m that has indices from 1 to k.
I want to access each n x m slice of A using the index given at this place in B,
...
2
votes
1answer
279 views
Cython additional typing and cimport for numpy array slow down the performance?
Below are two simple Cython methods I wrote. In g_cython() method I used additional typing for numpy array a and b, but surprisingly g_cython() is twice slower than g_less_cython(). I wonder why is ...
2
votes
2answers
241 views
Array indexing in Numpy python
How can I define _SOME CODE_ in the next code fragment in order to get the results shown below?
vector = numpy.array([a,b,c,d])
for i in xrange(4):
print vector[_SOME CODE_ using i]
It sould ...
0
votes
3answers
229 views
Extract items from array: between given values/conditions
I have a number of timeseries data in arrays and wish to extract values between given dates in the simplest way possible avoiding loops.
Here's an example:
from numpy import *
from datetime import *
...
10
votes
2answers
2k views
How to extract an arbitrary line of values from a numpy array?
I have a numpy array that contains some image data. I would like to plot the 'profile' of a transect drawn across the image. The simplest case is a profile running parallel to the edge of the image, ...
2
votes
2answers
346 views
Array Assignment in numpy / : colon equivalent
I am trying to relate the python/numpy indices of two arrays with different sizes, but I cannot pass index one from the small array to the large array through a subroutine.
For example, I have two ...
1
vote
3answers
535 views
Remove column of array via indexing in Python
I'm trying to remove an observation in an array via indexing. What I have is:
import numpy as np
test = np.ones([1, 1001])
What I want to do is return an array that is the same as test, but having ...
2
votes
1answer
216 views
How to reference numpy array objects?
I have numpy array:
>>> data
dtype([('date', '|O4'), ('value', '<f8')]
where date object is Python datetime.date object which consists of all days in one year: [2010-1-1, ..., ...
1
vote
1answer
673 views
Cython numpy array indexing
I am trying to speed up some python code with cython, and I'm making use of cython's -a option to see where I can improve things. My understanding is that in the generated html file, the highlighted ...
1
vote
2answers
236 views
Increment Numpy multi-d array with repeated indices
I'm interested in the multi-dimensional case of Increment Numpy array with repeated indices.
I have an N-dimensional array and a set N index arrays, who's values I want to increment. The index arrays ...
6
votes
2answers
2k views
Numpy multidimensional array slicing
Suppose I have defined a 3x3x3 numpy array with
x = numpy.arange(27).reshape((3, 3, 3))
Now, I can get an array containing the (0,1) element of each 3x3 subarray with x[:, 0, 1], which returns ...
1
vote
1answer
226 views
python numpy - efficient dense matrix creation
I am currently writing function to generate matrices based on a input file for a transportation package. It's an 1850x1850 matrix representing the zones in a network. These 1850 zones are also ...
0
votes
2answers
89 views
how to use the row [a,b] to index another array as data[a:b]?
I have two arrays, the first one is a (n, 2) array which contains the start and the end of a selection in a data pool, the second one is the data pool.
The general idea is to use the first to ...
4
votes
3answers
1k views
NumPy Array Indexing
Simple question here about indexing an array to get a subset of its values. Say I have a recarray which holds ages in one space, and corresponding values in another. I also have an array which is my ...
4
votes
2answers
121 views
Using multiple indicies for arrays in python
I have a simple question about how to use multiple indicies for an array or rec.array. More specifically, I want to isolate the cell(s) in an array which meet multiple stipulations. For example:
...
4
votes
3answers
165 views
Indexing python array with a python array with redundant elements
I'm experiencing a problem with array indexing. Suppose you have an array a and another array b you want to use to use as index for a in order to assign some values to the position pointed by b ...
