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 ...
0
votes
2answers
43 views
Matlab vectorization of cartesian product
Let's say I have two arrays X and Y and I need a matrix M(i, j) = some_func(X(i), Y(j)). How can I get that without using loops?
0
votes
1answer
52 views
How to do (m,n,k) * (n,k) = (m,k) in matlab?
I have found this relevant question:
Multiply columns of a matrix with 2d matrix slices of a 3d matrix in MatLab
I have the same problem but in my case m can vary for each slice. Is there a way to do ...
1
vote
2answers
64 views
Vectorization with floating point in Android
I am calculating a lot of instances of the distance from a n dimensional (10-39) point to an array. I want it to go as fast as possible, for Android 4.0+, specifically for the Galaxy S3.
I have got ...
-1
votes
2answers
101 views
subsetting dataframe R avoid for loop
In a large dataframe (1 million+ rows), I am counting the number of elements (rows) that are within a particular range and satisfy a third criteria. I have 33 of those ranges and use a very slow for ...
2
votes
1answer
155 views
ARM NEON vectorization failure
I would like to enable NEON vectorization on my ARM cortex-a9, but I get this output at compile:
"not vectorized: relevant stmt not supported: D.14140_82 = D.14143_77 * D.14141_81"
Here is my loop:
...
1
vote
0answers
49 views
How to perform an operation on a subset of elements in a Boost::uBlas::vector?
Suppose you have a long boost::numeric::ublas::vector and you want to perform an update operation on a subset of the elements. How many of the elements should be updated is somewhere between "all" or ...
3
votes
1answer
61 views
How can I vectorize this for loop (matlab)
I appreciate advice on how I might vectorize the following for loop (matlab):
summ=0;
for i=1:lasti
summ=summ+abs(newTS(m+i*k)-newTS(m+(i-1)*k));
end
By vectorize I mean use ...
0
votes
0answers
44 views
How to vectorize multiple nested for loops?
I have been trying to vectorize the 3 nested FOR loops below to create 'new_real_parameters' multidim. array having the same values than in 'real_parameters'. So far I have used the cumsum function ...
0
votes
1answer
58 views
Slow nested loop in R
I'm new to R and having trouble vectorizing a nested loop that is particularly slow. The loop goes through a list of centers (vectors stored in a structure) and finds the distance between these ...
1
vote
2answers
63 views
Vectorizing Matlab Loops
I Im trying my best not to use loops. But I find it very difficult to solve it other than using loops. Is it possible to vectorize the loop code?Thanks
...
1
vote
1answer
154 views
How to load a sliding diagonal vector from data stored column-wise with SSE
The sliding diagonal vector contains 16 elements, each one an 8-bit unsigned integer.
Without SSE and a bit simplified it would have looked like this in C:
int width=1000000; // a big number
uint8_t ...
1
vote
1answer
64 views
Matlab - Vectorize double for loop to find unique word tokens in a cell array
I have a cell array of cell array x that contains sentence strings, and I want to find a list of all unique word tokens in x and then use it to create field names for an array structure y if that ...
1
vote
3answers
87 views
Operate over levels of two factors
I have a dataset that looks something like this, with many classes, each with many (5-10) subclasses, each with a value associated with it:
> data.frame(class=rep(letters[1:4], each=4), ...
6
votes
2answers
159 views
Matlab how to vectorize double for loop? Setting values for nested structure array is very slow
I have a nested structure array t in the format of t.a.b = value, where and a and b are just random strings. t can have an arbitrary number of a's as field names and each a can have an arbitrary ...
0
votes
1answer
40 views
closed loop optimization in MATLAB
I would like to vectorize the following loop:
for I=1:N
x = f(x);
end
with f being a custom function, i.e. an anonymous function.
Is there a command like arrayfun that allows this?
edit: May be ...
0
votes
1answer
63 views
How to properly vectorize in Matlab
I have a set a section of code that is taking a long time to run. I read over the vectorization page on the mathworks site. I am still a little confused on one part, is it possible to vectorize the ...
2
votes
2answers
45 views
vectorize selection of ranges on a 1D vector in Matlab
This is probably very simple, but I can't figure it out... I want to create a matrix of ranges and I can do this using the following loop:
a=[0 10 22 35 42]; % sample initial ranges
for ...
2
votes
1answer
84 views
best way to count pulses in 1-D waveform in Matlab
I have a signal composed of square pulses (+ some noise), here's a tiny part of it:
I look for an efficient and robust way to count how many pulses I have.
Here's what I've done so far:
The ...
0
votes
2answers
66 views
Simple vectorization implementation in matlab
I am new to matlab. Through a simple example I want to understand vectorization. How can I vectorize following code snippet.
for i = 1:z
binno = binno + f*floor(clip(:,:,i)*bins/256);
f=f*bins;
...
0
votes
0answers
8 views
PDL: vectorization
A call of help to you Super Piddlers from a Riddler (Rookie
Piddler). As my start-up PDL project in the field of Machine Learning I am
aiming at converting/translating Mark Schmidt's UGM MATLAB ...
0
votes
1answer
100 views
R assign several list elements the same object
I currently have a loop - well actually a loop in loop, in a simulation model which gets slow with larger numbers of individuals. I've vectorised most of it and made it a heck of a lot faster. But ...
0
votes
3answers
92 views
How to vectorize this loop in R
I don't have much experience in R. I am trying to write a Gibbs sampler where I have a for loop like this:
for (iNum in 1:totNum) {
rateNum <- Y3[iNum]
if(Y3[iNum] > 0) {
...
1
vote
3answers
256 views
Calculate distance, given a set of coordinates
my question is quite trivial, but I'm looking for the vectorized form of it.
My code is:
HubHt = 110; % Hub Height
GridWidth = 150; % Grid length along Y axis
GridHeight = 150; % Grid length ...
0
votes
1answer
43 views
Vectorizing scalars/vector division
If for example I have:
Q1=4;
Q2=5;
PG=2:60
A1=Q1./sqrt(PG);
A2=Q2./sqrt(PG);
plot(PG,A1)
plot(PG,A2)
can I do sth like : ?
Q=[Q1,Q2];
A=Q./sqrt(PG);
plot(PG,A(1))
plot(PG,A(2))
or sth to avoid ...
1
vote
1answer
149 views
MATLAB how to vectorize this while loop
so the idea here is to read data into a matrix, and then make that matrix a square matrix by removing the excess column(s) or row(s), but vectorized, without using any loops at all and without using ...
-1
votes
2answers
103 views
How to evaluate matlab fit objects in a cell array without looping?
I have an array of fit objects and I need to evaluate each of them with several values. Because there are over thousand of those fit objects I find it very slow to loop over them and evaluate them ...
3
votes
3answers
138 views
Using OpenMP stops GCC auto vectorising
I have been working on making my code able to be auto vectorised by GCC, however, when I include the the -fopenmp flag it seems to stop all attempts at auto vectorisation. I am using the ...
3
votes
1answer
136 views
C: Writing code which can be auto vectorized, nested loop, GCC
I am trying to write some C code which can be vectorized. This is the loop I am trying:
for(jj=0;jj<params.nx;jj++)
for(kk=0;kk<NSPEEDS;kk++)
local_density_vec[jj] += ...
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?
0
votes
2answers
18 views
Can someone help me understand vectorization?
I'm really trying to wrap my head around vectorization but I can't seem to understand it. I don't know if I don't understand how to vectorize, or if I don't understand the array notation that's being ...
0
votes
1answer
107 views
speed up code - vectorization
I'm not really familiar with vectorization, but I am aware that, amongst MATLAB's strengths, code vectorization is probably the most rewarded.
I have this code:
ikx= (-Nx/2:Nx/2-1)*dk1;
iky= ...
1
vote
2answers
173 views
Option Pricing with volatility following a Garch process by use of Monte-Carlo Simulations
> Name Date Close CP ttmDaysW ttm Strike Fut Wibor lambda omega alpha beta sigma
1 OW20C1330 2011-01-19 0.60 c 42 0.1673307 3300 2768 0.0425 0.03985676 ...
2
votes
1answer
89 views
Forcing Automatic vectorization with GCC
Here my very simple question. With ICC I know it is possible to use #pragma SIMD to force vectorization of loops that the compiler chooses not to vectorize. Is there something analogous in GCC? Or, is ...
0
votes
3answers
63 views
Vectorize matlab code to map nearest values in two arrays
I have two lists of timestamps and I'm trying to create a map between them that uses the imu_ts as the true time and tries to find the nearest vicon_ts value to it. The output is a 3xd matrix where ...
3
votes
4answers
117 views
Fastest way to find rows without NaNs in Matlab
I would like to find the indexes of rows without any NaN in the fastest way possible since I need to do it thousands of times. So far I have tried the following two approaches:
find(~isnan(sum(data, ...
0
votes
1answer
101 views
Vectorization of Matlab Code involving ODE solver at each iteration
I want to write a fast MATLAB code where I need to write a for loop and I need to solve an ordinary differential equation each time.Is there any way to vectorize the code?
Following is the part of ...
0
votes
2answers
72 views
How to compare each element of a string to a list of words in R?
Say for example, I have a character vector
a
[1] "hi come asap, the show is awsome" "I am suffering from cold"
d
[1] "asap" "awsome" "cold" "lol" "rofl"
I should replace any word(from ...
3
votes
1answer
69 views
How may I use cellfun or arrayfun in place of this loop?
I implemented the following function in Matlab.
function [x y] = cloud(a,b,phi,x0,y0,N)
phi=phi*2*pi/360;
m=ceil(5*N/pi);
x=a*(-1+2*rand(m,1));
y=b*(-1+2*rand(m,1));
f=sqrt(a^2 - b^2);
...
0
votes
0answers
25 views
Vectorize with bsxfun
How to vectorize this code using bsxfun? For loops on braces/cell arrays.
Dimensions:
nlf 4; nout 4;
KuuinvKuy 4x4 cell, each cell 50x650 double;
Kuuinv 1x4 cell, each cell 50x50 double;
Kyu 4x4 ...
6
votes
2answers
96 views
R date time aligning and fill through values
I have multiple frames, for the purpose suppose 2.
Each frame comprises 2 columns - an index column, and a value column
sz<-5;
...
0
votes
3answers
69 views
vectorize the following code in matlab [closed]
Suppose I have a vector, say S=1:10, and a fixed number K=5. Is there a way to vectorize the following code?
v=zeros(1:10);
for i=1:10
if S(i)>K
v(i)=S(i)-K;
else
...
3
votes
1answer
61 views
How to double the size of a matrix and propagate its elements in Matlab?
suppose I have a matrix like this:
a =
1 2
3 4
I want to double the size of matrix and create something like this:
aa =
1 1 2 2
1 1 2 2
3 3 4 ...
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) # ...
3
votes
1answer
43 views
A matrix operation in MATLAB
I am trying to simplify my code a bit, and I am across a small question. Let
v = [1; 2; 3];
a1 = [4; 5; 6];
a2 = [7; 8; 9];
A = [a1, a2];
I am aiming to compute
u = [v.*a1, v.*a2]
by only ...
5
votes
2answers
172 views
Can someone explain how to graph this sum in MATLAB using contourf?
I'm going to start off by stating that, yes, this is homework (my first homework question on stackoverflow!). But I don't want you to solve it for me, I just want some guidance!
The equation in ...
0
votes
0answers
34 views
Avoiding reshape for Ode solver
I am trying to optimize the following code:
function y = dy(t,y,k,N)
y = reshape(y,[N,N,2,2]);
y = reshape([y(:,:,:,2) padarray(k.*(y(3:N,2:N-1,:,1) + y(1:N-2,2:N-1,:,1)...
+ y(2:N-1,3:N,:,1) + ...
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 ...
2
votes
1answer
57 views
Speeding up a repeated function call
I'm trying to calculate the following value:
1/N * sum[i=0 to N-1]( log(abs(r_i - 2 * r_i * x_i)) )
where x_i is recursively calculated with:
x_{i+1} = r_i * x_i * (1 - x_i)
Where all the r_is ...
3
votes
2answers
75 views
Intersection indices by rows
Given these two matrices:
m1 = [ 1 1;
2 2;
3 3;
4 4;
5 5 ];
m2 = [ 4 2;
1 1;
4 4;
7 5 ];
I'm looking for a function, such as:
indices = ...
0
votes
0answers
54 views
How to write to a Vector PDF file from my application without loosing the Positioning of elements present on my canvas
Here's a situation.
We have an application built on .net which is based on the idea of
creating banners for end-users. I have provided an area on my page where the
user can create his/her banners. ...


