1
vote
1answer
107 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
29 views

MATLAB: vectorized indexing confused with vector*matrix

I have a calculation that I want to perform element by element. foreach i from i=1 to i=N RES_i = det(A - V_i * I) // notice V_i and RES_i are SCALARS where for example A is 3x3 , I is 3x3, V ...
2
votes
1answer
71 views

vectorized indexing of matrices with other matrices (in octave)

Suppose we have a 2D (5x5) matrix: test = 39 13 90 5 71 60 78 38 4 11 87 92 46 45 35 40 96 61 17 1 90 50 46 89 63 And a second 2D (5x2) ...
2
votes
2answers
496 views

Fast way of getting index of match in list

Given a list a containing vectors of unequal length and a vector b containing some elements from the vectors in a, I want to get a vector of equal length to b containing the index in a where the ...
1
vote
2answers
105 views

R indexing issue

Sorry for vague question title, i couldn't figure out something more specific. I have 3x2 matrix c: > c [,1] [,2] [1,] 1 2 [2,] 1 3 [3,] 2 3 It is important that ncol(c) ...
8
votes
1answer
191 views

Minimize vector indexing overhead

I have a vectorized function which calculates distance to a large set of points. To improve performance I am limiting the number of the points by selecting only the necessary ones. So instead of ...
1
vote
1answer
245 views

Splitting a matrix based on its contents in MATLAB

A matrix has m rows and n columns (n being a number not exceeding 10), and the nth column contains either 1 or 0 (binary). I want to use this binary as a decision to take out the associated row (if 1, ...
7
votes
2answers
8k views

Is there an R function for finding the index of an element in a vector?

In R, I have an element x and a vector v. I want to find the first index of an element in v that is equal to x. I know that one way to do this is: which(x == v)[[1]], but that seems excessively ...
1
vote
1answer
509 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)], ...
3
votes
3answers
69 views

Is there a vectorized way to operate on a different number of values per column in MATLAB?

In MATLAB, is there a more concise way to handle discrete conditional indexing by column than using a for loop? Here's my code: x=[1 2 3;4 5 6;7 8 9]; w=[5 3 2]; q=zeros(3,1); for i = 1:3 ...