0
votes
1answer
21 views

How do I convert a 2D numpy array into a 1D numpy array of 1D numpy arrays?

In other words, each element of the outer array will be a row vector from the original 2D array.
2
votes
1answer
27 views

How can I define a vectroized function to make a list of 2 by 2 matrices?

I'm trying to define a function that return a 2 by 2 matrix. Specifically, I have: def f(d,n): return scipy.mat([[1,d/n],[0,1]]) This works fine when d and n are scalar input. But if d and n ...
2
votes
3answers
65 views

Eliminate for loops in numpy implementation

I have the following dataset in numpy indices | real data (X) |targets (y) | | 0 0 | 43.25 665.32 ... |2.4 } 1st block 0 0 | 11.234 |-4.5 } 0 ...
1
vote
1answer
73 views

python printing a generator list after vectorization?

I am new with vectorization and generators. So far I have created the following function: import numpy as np def ismember(a,b): for i in a: if len(np.where(b==i)[0]) == 0: ...
0
votes
2answers
127 views

Vectorized way of calculating row-wise dot product two matrices with Scipy

I want to calculate the row-wise dot product of two matrices of the same dimension as fastest as possible. This is the way I am doing it: import numpy as np a=np.array([[1,2,3],[3,4,5]]) ...
2
votes
2answers
117 views

How to vectorize this multiplication?

I have an X matrix with shape (ni*43*91)x67 and a W tensor with shape 67x43x91. ni varies I need to get a (ni*43*91) vector y by dotting the first ni rows of X with the first column of W to get the ...
0
votes
3answers
113 views

Vectorize iteration over two large numpy arrays in parallel

I have two large arrays of type numpy.core.memmap.memmap, called data and new_data, with > 7 million float32 items. I need to iterate over them both within the same loop which I'm currently doing ...
3
votes
2answers
48 views

Numpy xor-reduce an array

How to xor all elements of a boolean numpy array using vectorized methods: i.e., a_1 xor a_2 xor ... xor a_n?
4
votes
1answer
161 views

numpy.sum may be slower than Python for-loop

When summing an array over a specific axis, the dedicated array method array.sum(ax) may actually be slower than a for-loop : v = np.random.rand(3,1e4) timeit v.sum(0) # ...
1
vote
2answers
65 views

Vectorized method to sync two arrays

I have two Pandas TimeSeries: x, and y, which I would like to sync "as of". I would like to find for every element in x the latest (by index) element in y that preceeds it (by index value). For ...
7
votes
2answers
197 views

How to vectorize this python code?

I am trying to use NumPy and vectorization operations to make a section of code run faster. I appear to have a misunderstanding of how to vectorize this code, however (probably due to an incomplete ...
0
votes
2answers
49 views

how to vectorize an operation on a 1 dimensionsal array to produce 2 dimensional matrix in numpy

I have a 1d array of values i = np.arange(0,7,1) and a function # Returns a column matrix def fn(i): return np.matrix([[i*2,i*3]]).T fnv = np.vectorize(fn) then writing fnv(i) gives ...
2
votes
2answers
131 views

Vectorize numpy array for loop

I'm trying to figure out how to vectorize the following loop: for i in range(1,size): if a[i] < a[i-1]: b[i] = a[i] else: b[i] = b[i-1] b is a (large) array of the same size as ...
3
votes
1answer
80 views

How can I vectorize this simple algorithm with numpy?

Or are truly iterative algorithms like this not vectorizable? s += usage can be vectorized with cumsum, but the floor on the sum is problematic. Is there some fancy way to use lags or shifting? s ...
1
vote
1answer
139 views

How to rewrite this code from python loops to numpy vectors (for perfomance)?

I have this code: for j in xrange (j_start, self.max_j): for i in xrange (0, self.max_i): new_i = round (i + ((j - j_start) * discriminant)) if new_i >= self.max_i: ...
5
votes
2answers
223 views

How to vectorize a simple for loop in Python/Numpy

I found dozens of examples how to vectorize for loops in Python/NumPy. Unfortunately, I don't get how I can reduce the computation time of my simple for loop using a vectorized form. Is it even ...
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 = ...
-2
votes
1answer
56 views

if statement in numpy array always needs vectorization

The if statement in this function, works without vectorization? def K(T0,z,v): for i in range(len(T0)-1): GDens[i+1]=(Dens[i+1]-Dens[i])/(z[i+1]-z[i]) for i in range(len(T0)): ...
5
votes
1answer
158 views

Why is numpy vectorized function apparently called an extra time?

I have a numpy object array containing several lists of index numbers: >>> idxLsts = np.array([[1], [0, 2]], dtype=object) I define a vectorized function to append a value to each list: ...
3
votes
2answers
141 views

Is vectorizing this triple for loop in Python / Numpy possible?

I am trying to speed up my code which currently takes a little over an hour to run in Python / Numpy. The majority of computation time occurs in the function pasted below. I'm trying to vectorize Z, ...
0
votes
1answer
127 views

Calculate diff of a numpy array using custom function instead of subtraction

I am working with an array created from a list of geographical coordinates describing a GPS trajectory. The data is like this: [[-51.203018 -29.996149] [-51.203018 -29.99625 ] [-51.20266 ...
2
votes
2answers
176 views

How do I vectorize this double for loop in Numpy?

I have some Python / Numpy code that is running slow and I think it is because of the use of a double for loop. Here is the code. def heat(D,u0,q,tdim): xdim = np.size(u0) Z = ...
6
votes
2answers
192 views

Vectorize this convolution type loop more efficiently in numpy

I have to do many loops of the following type for i in range(len(a)): for j in range(i+1): c[i] += a[j]*b[i-j] where a and b are short arrays (of the same size, which is between about ...
0
votes
3answers
146 views

Slow Row-wise Comparison with For-loops in NumPy - How to improve?

I'm using python and numpy to compare two arrays or equal shape with coordinates (x,y,z) in order to match them, which look like that: coordsCFS array([[ 0.02 , 0.02 , 0. ], ...
0
votes
1answer
100 views

What is the best vectorization method here?

I am wondering what would be the best way to vectorize the following formula: c= Sum(u(i)*<u(i),y>/v(i) ) <.,.> means dot product of two matrix. let say we have a matrix K= ...
1
vote
1answer
117 views

Speeding up my calculation by using Vectorization

I'm new to python, so I have some problems with the efficiency of my computation. I'm using this code to fill my H matrix and my h vector (x_tr, x_te and c are lists): for l in xrange(0, b): for ...
5
votes
1answer
761 views

Efficiently rotate a set of points with a rotation matrix in numpy

I have a list of 3D points stored in numpy array A with shape (N,3) and a rotation matrix R with shape (3,3). I'd like to compute the dot product of R.x for each point x in A in-place. Naively I can ...
0
votes
2answers
181 views

How to speed up a loop in python

I would like to speed up this short piece of code max_x=array([max(x[(id==dummy)]) for dummy in ids]) x and id are numpy arrays of the same dimensions and ids is an array of smaller ...
10
votes
6answers
290 views

Interleaving two numpy index arrays, one item from each array

I have two ordered numpy arrays and I want to interleave them so that I take one item from the first array, then another from the second, then back to the first - taking the next item that is larger ...
5
votes
2answers
355 views

How can I vectorize this triple-loop over 2d arrays in numpy?

Can I eliminate all Python loops in this computation: result[i,j,k] = (x[i] * y[j] * z[k]).sum() where x[i], y[j], z[k] are vectors of length N and x,y,z have first dimensions with length A,B,C ...
2
votes
1answer
255 views

How to assign to square submatrices in big matrix without loops in numpy

How can I vectorize this loop, which populates two square submatrices of a larger matrix (also keeps larger matrix symmetric) using numpy arrays: for x in range(n): assert m[x].shape == (n,) ...
1
vote
2answers
216 views

Numpy vectorization of 2D array differences

I'd like to vectorise the difference of two M x N arrays across different slices in NumPy. Something like this: dA = A[1:,:] - A[:-1,:] dB = B[:,1:] - B[:,:-1] C = dA * dB But since dA is (M-1) x N ...
1
vote
2answers
570 views

Numpy: vectorization for multiple values

Imagine you have an RGB image and want to process every pixel: import numpy as np image = np.zeros((1024, 1024, 3)) def rgb_to_something(rgb): pass vfunc = np.vectorize(rgb_to_something) ...
2
votes
1answer
245 views

Speed up array query in Numpy/Python

I have an array of points (called points), consisting of ~30000 x,y, and z values. I also have a separate array of points (called vertices), about ~40000 x,y, and z values. The latter array indexes ...
1
vote
1answer
148 views

NumPy: vectorize sum of distances to a set of points

I'm trying to implementing a k-medoids clustering algorithm in Python/NumPy. As part of this algo, I have to compute the sum of distances from objects to their "medoids" (cluster representatives). I ...
4
votes
2answers
304 views

Writing functions that accept both 1-D and 2-D numpy arrays?

My understanding is that 1-D arrays in numpy can be interpreted as either a column-oriented vector or a row-oriented vector. For instance, a 1-D array with shape (8,) can be viewed as a 2-D array of ...
4
votes
1answer
462 views

Vectorized moving window on 2D array in numpy

I am apply an operation on a moving window of constant size across a 2D array. Is there an efficient vectorize-like operation I can implement to do this without looping in Python? My current ...
3
votes
2answers
322 views

exponential moving sum in numpy / scipy?

I am looking for a function to calculate exponential moving sum in numpy or scipy. I want to avoid using python loops because they are really slow. to be specific, I have two series A[] and T[]. ...
2
votes
3answers
209 views

Numpy vectorization algorithms to sum up numbers with the same time stamps

I have two arrays P and T. P[i] is a number, whose time stamp is T[i]; There might be duplicated time stamps. I want to produce another two arrays Q and U, where Q[i] has time stamp U[i], and Q[i] ...
3
votes
2answers
610 views

Numpy vectorization algorithms to find first future element greater than current element

I have a time series A. I want to generate another time series B, such that B[i] = j, where j is the first index greater than i such that A[j] > A[i]. is there a fast way of doing this in numpy? ...
0
votes
1answer
895 views

how to use numpy.vectorize or numpy.frompyfunc

[EDIT:I sort of brush this example up so I didn't clean up my code very well. My question is more on, how do I pass a subarray into a numpy.vectorize-d function, not specifically about this example.] ...
5
votes
2answers
305 views

How to avoid enormous additional memory consumption when using numpy vectorize?

This code below best illustrates my problem: The output to the console (NB it takes ~8 minutes to run even the first test) shows the 512x512x512x16-bit array allocations consuming no more than ...
2
votes
1answer
374 views

vectorized indexing/slicing in numpy/scipy?

I have an array A, and I have a list of slicing indices (s,t), let's called this list L. I want to find the 85 percentiles of A[s1:t1], A[s2:t2] ... Is there a way to vectorize these operations in ...
6
votes
2answers
376 views

Difference between frompyfunc and vectorize in numpy

What is the difference between vectorize and frompyfunc in numpy? Both seem very similar. What is a typical use case for each of them? Edit: As JoshAdel indicates, the class vectorize seems to be ...
4
votes
2answers
474 views

Why is vectorization beneficial for Matlab programs? Is it the same for NumPy and Boost(uBLAS)?

Using vectorization to replace for-loops may increase Matlab programs' speed significantly. Is it because the vectorized codes are runned in parallel? Is vectorization also beneficial for program ...
5
votes
3answers
457 views

Vectorize over the rows of an array

I have an array X and I want to apply a function f to all the rows of X: # silly example X = numpy.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 0]], 'i') def f(row): return sum(row) y = ...
4
votes
2answers
1k views

Numpy vectorize, using lists as arguments

The numpy vectorize function is useful, but it doesn't behave well when the function arguments are lists rather then scalars. As an example: import numpy as np def f(x, A): print "type(A)=%s, ...
8
votes
2answers
2k views

Using Numpy Vectorize on Functions that Return Vectors

numpy.vectorize takes a function f:a->b and turns it into g:a[]->b[]. This works fine when a and b are scalars, but I can't think of a reason why it wouldn't work with b as an ndarray or list, i.e. ...
3
votes
3answers
2k views

vectorizing a for loop in numpy/scipy?

I'm trying to vectorize a for loop that I have inside of a class method. The for loop has the following form: it iterates through a bunch of points and depending on whether a certain variable (called ...