3
votes
1answer
35 views

Create struct from multiple arrays in a one-liner

Let's say I have two arrays of the same size: X = [1 2 3 4 ...] Y = [1 2 3 4 ...] But what I want is a struct: S(1) = S(2) = X: 1 X: 2 Y: 1 Y: 2 The ...
0
votes
1answer
32 views

Pass element index in Numpy vectorization

If you have the following code : import numpy as np def myFunction(element, index): print element, index myVector = np.vectorize(myFunction) myVector(myArray, currentElementIndex) How can ...
0
votes
1answer
28 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.
0
votes
0answers
20 views

vectorize operation in C with Cell BE

I have the following scenario: a 1d array of dim size, and another 2 arrays of dim/2 size. I want to copy the elements of the smaller arrays into the larger one. Normally I do this using the following ...
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 ...
1
vote
1answer
58 views

vectorize a filter to a subsequence of an array in Matlab

I have a vector,"a", and a filter,"b".Both of those vectors contain only 0 or 1. I would like to transform "a" such that any sequence of 1 only starts when b is at 1. I have illustrated this using a ...
0
votes
1answer
83 views

Adding different numbers to each element in array row-by-row

Say I have a 4x2 array as shown below. Basically what I'm trying to do is: 1. Iterate by row 2. Check if conditions 3. Add different random number to each element in that row 4. Generate number again ...
1
vote
1answer
75 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: ...
-1
votes
1answer
41 views

How to store extremely large array in a file [closed]

I need to store an extremely large vector array on a file. The size could be as large as 1e48. How to store this in a file and then read a set of data (say 8 elements at a time) sequentially from it, ...
2
votes
1answer
65 views

Vectorized Reshaping of Columns in an Array

I have an array A, and want to reshape the last four elements of each column into a 2x2 matrix. I would like the results to be stored in a cell array B. For example, given: A = [1:6; 3:8; 5:10]'; ...
26
votes
2answers
664 views

Is indexing vectors in MATLAB inefficient?

Background My question is motivated by simple observations, which somewhat undermine the beliefs/assumptions often held/made by experienced MATLAB users: MATLAB is very well optimized when it comes ...
1
vote
1answer
111 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
2answers
113 views

Basic R: Multiplying elements in 3-D array with loop

I have two 3-D arrays, A and B, each 2 x 3 x 3. Examples shown below (which will help clarify how I'd like to multiply). A1 A2 A3 B1 B2 B3 A4 A5 A6 ...
3
votes
1answer
237 views

vectorize a loop which accesses non-consecutive memory locations

I have a loop of this structure Reference : Maxwell Code Example do z=1,zend do y=1,yend do x=1,xend k=arr(x,y,z) do while(k.ne.0) ix=fooX(k) ...
10
votes
6answers
306 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 ...
1
vote
2answers
275 views

mean of parts of an array in octave

I have two arrays. One is a list of lengths within the other. For example zarray = [1 2 3 4 5 6 7 8 9 10] and lengths = [1 3 2 1 3] I want to average (mean) over parts the first array with ...
1
vote
1answer
279 views

Efficiently filtering a MATLAB struct array?

Suppose I have a struct array in MATLAB: a= struct('a1',{1,2,3},'a2',{4,5,6}) How can I efficiently (i.e. with vectorized code) filter the elements of the struct so that they satisfy some boolean ...
3
votes
3answers
149 views

Vectorizing a function involving a while loop or if-clause in a loop (Matlab)

Let's say I have a function that can compute one output from one input, e.g. function y = sqrt_newton(x) y = x ./ 2; yo = y; y = 0.5.*(y + x ./ y); while abs(y - yo) > eps * abs(y) ...
1
vote
4answers
139 views

Java: Obtain the Subset of an Array that meet a criteria

I have an an array of arrays. float[][] Test For example { {433801.000f,335601.000f,5}, {433821.000f,335631.000f,5}, {433811.000f,335671.000f,5} }; How can I get the subset of this ...
2
votes
1answer
255 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 ...
0
votes
1answer
75 views

Vectorize the sum of unique columns

There are multiple occurrence of same combination of values in different rows of matlab, for example 1 1 in first and second row. I want to remove all those duplicates but adding the values in third ...
8
votes
4answers
5k views

Matlab array of struct : Fast assignment

Is there any way to "vector" assign an array of struct. Currently I can edges(1000000) = struct('weight',1.0); //This really does not assign the value, I checked on 2009A. for i=1:1000000; ...
6
votes
2answers
396 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
3answers
3k views

MATLAB: How to vector-multiply two arrays of matrices?

I have two 3-dimensional arrays, the first two dimensions of which represent matrices and the last one counts through a parameterspace, as a simple example take A = repmat([1,2; 3,4], [1 1 4]); ...
1
vote
1answer
520 views

MATLAB: simultaneously append to multiple elements of a cell array

I want to append an item to multiple elements of a cell array, at once, in a loop over the items (to be appended). E.g. nodes(nodesHere,1) = cellfun(@(x)[x items(i)], ...
8
votes
3answers
895 views

Which haskell array implementation to use? AKA what are the pros and cons of each

What do I need? [an unordered list] VERY easy parallelization support for map, filter etc. ability to perform array based computations efficiently, like A=B+C, sort of like matlab arrays. Generation ...
0
votes
1answer
78 views

matlab vectorization varying array

Can anyone tell me what the basic idea behind varying rows or columns in a matrix with respect to the row/column number is in matlab? I've been trying to replace all the columns in a given matrix by ...
1
vote
1answer
170 views

Vectorization in MATLAB

I'm trying to create a vector of size 121x101 such that the ith column is made up of V_t*e, where V_t = 1000*10^((i-1)/20) and e is a 121 long column of ones. Clearly i is to be varied from 1 to 101 ...
1
vote
2answers
4k views

Incrementing one value of a MATLAB array multiple times in one line

This is a question about incrementing one value of a MATLAB array multiple times in the same statement, without having to use a for loop. I set my array as: >> A = [10 20 30]; And then run: ...
9
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. ...