Vectorization refers to a programming paradigm where functions operate on whole arrays in one go. This affords benefits in terms of function calls, memory access, parallelization and code expressiveness. Some programming languages, such as MATLAB, are optimised to give the best performance when ...
1
vote
2answers
111 views
Idiomatic way to copy cell values “down” in an R vector [duplicate]
Possible Duplicate:
Populate NAs in a vector using prior non-NA values?
Is there an idiomatic way to copy cell values "down" in an R vector? By "copying down", I mean replacing NAs with the ...
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 ...
1
vote
1answer
39 views
looping on flattened fortran matrices
I have a bit of code that looks like this:
DO I=0,500
arg1((I*54+1):(I*54+54)) = premultz*sinphi(I+1)
ENDDO
In short, I have an array premultz of dimension 54. I have an array sinphi of ...
4
votes
2answers
122 views
Speeding up a nested for loop
I've been working on speeding up the following function, but with no results:
function beta = beta_c(k,c,gamma)
beta = zeros(size(k));
E = @(x) (1.453*x.^4)./((1 + x.^2).^(17/6));
for ii = ...
2
votes
0answers
170 views
SIMD vector interoperability between LLVM and gcc
I would like to accelerate an program I'm working on by dynamically generating code with LLVM's JIT. The algorithm can operate on vectors, and I'd rather like to use the SIMD vector extensions in LLVM ...
1
vote
6answers
215 views
Need to create a matrix with specific elements using only one command
I need to create the following matrix using only a single command without typing it out explicitly:
M = [0 0 0 0 0 0;...
0 0 0 0 0 0;...
0 0 0 0 0 0;...
0 0 0 1 2 3;...
0 0 0 4 5 ...
2
votes
2answers
81 views
Iteratively take mean of column in Matlab
Hi I have a column of values in Matlab (PDS(:,39)). This column is filtered for various things and there are two seperate flagging columns (PDS(:,[41 81])) that are either 0 for a valid row or -1 for ...
2
votes
2answers
100 views
GNU Octave: How to find n maximum elements of a vector
I have vector in Octave like this:
[ 4 5 1 2 3 6 ]
Is there any function that returns n maximum elements of that vector, in this case, the three biggest are 6, 5, and 4?
[6 5 4]
The Octave ...
1
vote
1answer
85 views
How to turn data into a picture (MATLAB)
I am only a novice programmer, and I would like some help with this problem.
I am currently running simulations of particles that interact and move around on a two-dimensional lattice. The data of ...
-1
votes
1answer
38 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, ...
1
vote
1answer
54 views
Transfare custome shape to openGL
I have problem with idea, how to add custom shape in to OPENGL.
I have image with custom shape like this:
http://www.coloringpagebook.com/chicken-simple-shapes-coloring-pages/
I want to create ...
2
votes
1answer
220 views
Matlab — random walk with boundaries, vectorized
Suppose I have a vector J of jump sizes and an initial starting point X_0. Also I have boundaries 0, B (assume 0 < X_0 < B). I want to do a random walk where X_i = [min(X_{i-1} + J_i,B)]^+. ...
0
votes
2answers
286 views
how to calculate mean of several gray scale images in matlab?
I have a set of images and I want to calculate mean of these images in Matlab and then subtract the mean from all images.Then, plot the distribution of images through hist function in Matlab.
Thanks ...
2
votes
2answers
172 views
how does postgres handle the bit data type?
i have a table with a column vector of type bit(2000). how does the db engine handle operations AND and OR over this values? does it simply divide into 32bit chunks (or 64, respectively) and then ...
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 ...
4
votes
1answer
107 views
Vectorized extraction of a specific pattern of shorts from an array, and also insertion into a new array
I have an array of shorts where I want to grab half of the values and put them in a new array that is half the size. I want to grab particular values in this sort of pattern, where each block is 128 ...
1
vote
1answer
103 views
Change every string in a cell array and covert it to numbers without loop?
I have following cell array of strings:
daycell =
'd100'
'd104'
'd105'
I would like to make an array of numbers from it like this:
array =
100 104 105
I can accomplish it using loop:
...
2
votes
2answers
243 views
Matlab find Series of First Negative Number
With a matrix of numbers in Matlab, how would you find the first negative number after a series of positive numbers?
So far, the only answer I could come up with was to write a loop to check for ...
1
vote
1answer
99 views
Matlab code runs too slow on three dimensional array
I'm trying to vectorize the following code:
% code before
% code before
% a lot of code before we got to the current comment
%
% houghMatrix holds some values
for i=1:n
for j=1:m
...
1
vote
3answers
89 views
How to avoid a nested for loop in Matlab?
If I have :
for i=1:n
for j=1:m
if outputImg(i,j) < thresholdLow
outputImg(i,j) = 0;
elseif outputImg(i,j)> thresholdHigh
outputImg(i,j) = 1;
...
0
votes
1answer
210 views
g++ autovectorization fail for the most basic example
I am currently trying to use autovectorization with g++.
To do so, I use the following minimal example:
#include <array>
int main()
{
std::array<double, 16> x;
for (unsigned int i ...
0
votes
0answers
75 views
how do I copy arrays using a vectorized loop?
I would like to vectorize a simple array copy. The arrays are handed in as a float* with an int for the size. I check the sizing beforehand then run the copy:
int i;
float *vec;
float *tab;
for(i ...
0
votes
2answers
109 views
Finding maximum of two vectors without a loop?
If there are two vectors, say x and y.
for (i in 1:length(x))
z[i] = max(x[i],y[i])
Can you please help me to perform this without using a loop?
1
vote
2answers
109 views
Similarity algorithm (mathematics) of sampled signals
Let's say I have sampled some signals and constucted a vector of the samples for each. What is the most efficent way to calculate (dis)similarity of those vectors? Note that offset of the sampling ...
5
votes
2answers
126 views
How to Vectorize this R code Using Plyr, Apply, or Similar?
I wrote the following R code that identifies duplicate files in a directory. How can one vectorize the for-loop using the plyr package (or similar)? I would like to achieve a more idiomatic R solution ...
2
votes
3answers
117 views
MATLAB How to vectorize these for loops?
I've searched a lot but didn't find any solution to my problem, could you please help me vectorizing (or just a way to make it way faster) these loops ?
% n is the size of C
h = 1/(n-1)
dt = 1e-6;
a ...
9
votes
3answers
225 views
Why does vectorized code run faster than for loops in MATLAB?
I've read this but I still don't understand why vectorized code is faster.
In for loops, I can use parfor to for parallel computation. If vectorized code is faster, does it means that it is ...
2
votes
3answers
114 views
How to vectorize this algorithm, octave verses matlab speed issue
Background story:
This is an old script, I needed to compare two slightly different images of the same object to get data on the camera itself. I wrote this script in octave and tried it, later I ...
10
votes
3answers
214 views
Where is the loop-carried dependency here?
Does anyone see anything obvious about the loop code below that I'm not seeing as to why this cannot be auto-vectorized by VS2012's C++ compiler?
All the compiler gives me is info C5002: loop not ...
2
votes
1answer
140 views
How to vectorize a for loop in R
I'm trying to clean this code up and was wondering if anybody has any suggestions on how to run this in R without a loop. I have a dataset called data with 100 variables and 200,000 observations. ...
6
votes
1answer
78 views
Vectorizing a conditional involving shorts
I'm using a compact struct of 2 unsigned shorts indicating a start and end position.
I need to be able to quickly determine if there are any Range objects with a length (difference from start to end) ...
0
votes
0answers
77 views
Autovectorize array of unvectorizable processes in VS 2012
Suppose you have the following code:
class Unit
{
private:
float _outDel = 0;
public:
float Process()
{
float rnd = rand();
float out = rnd + _outDel;
_outDel = ...
7
votes
3answers
288 views
How to benchmark Matlab processes?
Searching for an idea how to avoid using loop in my Matlab code, I found following comments under one question on SE:
The statement "for loops are slow in Matlab" is no longer generally true since ...
8
votes
4answers
189 views
Fast vectorized function to check if a value is in an interval
Is there a function in R that efficiently checks if a value is larger than one and smaller than another number? It should work with vectors, too.
Essentially, I'm looking for a faster version of the ...
1
vote
1answer
89 views
Vectorize a for loop in R
I'm using a very large data set with about 3 million observations, and I want to go through and essentially combine certain observations if they meet specific requirements. I've written a for loop to ...
4
votes
1answer
62 views
Is there a way to vectorize operations that access multiple elements of a vector?
Let's say I have a vector of integers:
> a<-sample(1:100,10)
> a
[1] 13 23 97 70 63 32 82 31 15 36
And I want a vector containing the cumulative values of this vector. That is, I ...
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 ...
4
votes
2answers
94 views
back and forth to dummy variables in R
So, I've been using R on and off for two years now and been trying to get this whole idea of vectorization. Since I deal a lot with dummy variables from multiple response sets from surveys I thought ...
1
vote
1answer
75 views
How to get polygons from part of grid that represents modeling result
I have grid that represents result of some modelling process. In this case it is forest fire.
Sometime fire region may have empty spaces, or it can be split into two or more regions. I need to ...
7
votes
1answer
1k views
Vectorized look-up of values in Pandas dataframe
I have two pandas dataframes one called 'orders' and another one called 'daily_prices'.
daily_prices is as follows:
AAPL GOOG IBM XOM
2011-01-10 339.44 614.21 142.78 71.57
...
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
107 views
MATLAB - Vectorize a double loop containing a distance measure
I am trying to optimize my code and am not sure how and if I would be able to vectorize this particular section??
for base_num = 1:base_length
for sub_num = 1:base_length
...
2
votes
1answer
35 views
Matlab Vectorization using Multiple Columns from an Array
I'm trying to vectorize a bit of Matlab code that requires input from two adjacent members of an array. Essentially:
x=1:10;
for i=1:9
y(i) = x(i)+x(i+1);
end
Is there a way to vectorize ...
1
vote
1answer
167 views
Perform a vectorized exponential moving average in octave
In GNU Octave, would like to calculate an n-day exponential moving average of a vector without using a for-loop.
I am able to do this with a for loop but it is inefficient. I would like to use the ...
1
vote
2answers
116 views
vectorize a loop having indirect access
I have the below snippet which is a hotspot in an application.
The for loop is not vectorized due to vector dependance.
Is there a way to rewrite this loop to make it run faster.
#define NUM_KEYS ...
1
vote
1answer
102 views
Matlab for loop vectorization and memory
X,Y and z are coordinates representing surface. In order to calculate some quantity, lets call it flow, at point i,j of the surface, i need to calculate contibution from all other points (i0,j0). To ...
2
votes
1answer
63 views
Vectorize a for loop in which the input depends on the output
I have a complicated problem about vectorization of a dependence for loop, I would like to have some helps from you.
Let's X1 be a vector with length n1, X2 be a vector with length n2, F1 be a N1xn1 ...
1
vote
1answer
138 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:
...
4
votes
1answer
140 views
Getting all submatrices
I have got an N×M matrix m like:
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
I want to get all submatrices of size P×Q (P,Q are odd) w/o employing a for-loop.
The result s should be a ...
1
vote
2answers
95 views
How to vectorize the code in MATLAB
I have some Cluster Centers and some Data Points. I want to calculate the distances as below (norm is for Euclidean distance):
costsTmp = zeros(NObjects,NClusters);
lambda = ...


