Tagged Questions
0
votes
1answer
66 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 ...
0
votes
1answer
59 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 ...
0
votes
3answers
93 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
votes
2answers
106 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 ...
1
vote
2answers
113 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 ...
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 ...
1
vote
3answers
91 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;
...
7
votes
3answers
293 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 ...
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 ...
8
votes
1answer
214 views
How to Vectorize a Nested Loop
I'm having trouble visualizing how to vectorize this set of loops. Any guidance would be appreciated.
ind_1 = [1,2,3];
ind_2 = [1,2,4];
K = zeros(3,3,3,3,3,3,3,3,3);
pp = rand(4,4,4);
for s = 1:3
...
25
votes
2answers
557 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 ...
6
votes
3answers
110 views
How to vectorize this for loop matlab
divisible = 0;
low = input('Start Value: ');
high = input('End Value: ');
divisor = input('Divisor: ');
mask = mod([low:high],divisor);
for index = low:high
if mask(index) == 0
...
4
votes
3answers
195 views
Avoiding loops in MatLab code (barycentric weights)
After having learned basic programming in Java, I have found that the most difficult part of transitioning to MatLab for my current algorithm course, is to avoid loops. I know that there are plenty ...
30
votes
4answers
806 views
GCC: vectorization difference between two similar loops
When compiling with gcc -O3, why does the following loop not vectorize (automatically):
#define SIZE (65536)
int a[SIZE], b[SIZE], c[SIZE];
int foo () {
int i, j;
for (i=0; i<SIZE; i++){
...
7
votes
6answers
260 views
Converting this ugly for-loop to something more R-friendly
Been using SO as a resource constantly for my work. Thanks for holding together such a great community.
I'm trying to do something kinda complex, and the only way I can think to do it right now is ...
0
votes
2answers
89 views
Array of n function results without a for-loop
I have a function fun that returns a double. I want to call the function n times and store the results in an array:
results = zeros(1, n);
for i = 1:n
results(i) = fun;
end
Can I achieve this ...
3
votes
1answer
121 views
R - vectorizing a which operation
Hi I have a function in R that I'm trying to optimize for performance. I need to vectorize a for loop. My problem is the slightly convoluted data structure and the way I need to perform lookups using ...
1
vote
3answers
371 views
z score with nan values in matlab (vectorized)
I am trying to calculate the zscore for a vector of 5000 rows which has many nan values. I have to calculate this many times so I dont want to use a loop, I was hoping to find a vectorized solution.
...
3
votes
1answer
244 views
Simplifying for loop (matlab)
I am working on a program at work to calculate what a plane could see as it fly's over a target area. As it goes over the area it could follow one of many tracks, around 100 for the normal area size. ...
2
votes
3answers
201 views
R: Is it possible to vectorise / speed-up this double loop?
This is a high-level, general question. There are some similar ones around with different, and more concise, examples. Perhaps it cannot be answered. conn is a matrix.
for (i in 2:dim(conn)[1]) ...
0
votes
1answer
222 views
Matlab loops vectorization
Here is piece of Matlab code. It works very slow. Is there any way to make it work faster? I cant figure out the way to vectorize it.Maybe it can be written like some kind of filter ?
...
for ...
0
votes
2answers
95 views
Code Vectorization that works on different array elements?
just started with matlab, and vectorization,
FF to problem:
What to do:
%n,t are vectors(1D arrays) EDIT: these are column vectors.
k=9;
i=1;
kv = 0.6*k:0.2*k:1.4*k;
[zs,zb] = size(k);
error1 = ...
3
votes
3answers
145 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)
...
2
votes
4answers
709 views
How to write vectorized functions in MATLAB
I am just learning MATLAB and I find it hard to understand the performance factors of loops vs vectorized functions.
In my previous question: Nested for loops extremely slow in MATLAB (preallocated) ...
2
votes
3answers
159 views
Vectorizing a search function that contains a loop and an if clause
I am given two very large data sets and I've been trying to build a function that would find certain coordinates from one set that respect an if clause regarding the other data set. My problem is that ...
7
votes
2answers
944 views
SSE vectorization of math 'pow' function gcc
I was trying to vectorize a loop that contains the use of the 'pow' function in the math library. I am aware intel compiler supports use of 'pow' for sse instructions - but I can't seem to get it to ...
1
vote
3answers
395 views
MATLAB loop optimization
I have a matrix, matrix_logical(50000,100000), that is a sparse logical matrix (a lot of falses, some true). I have to produce a matrix, intersect(50000,50000), that, for each pair, i,j, of rows of ...
3
votes
4answers
535 views
loop to create a new variable based on other cases in R (very basic)
I have a dataframe with three variables: ID, group, and nominated_ID.
I want to know the group that nominated_ID belongs in.
I'm imagining that for each case, we take nominated_ID, find the case ...
3
votes
1answer
258 views
What is meant by too many BB's in loop, can't vectorize?
In short, the situation is this: I have been trying to compile a C code with option gcc -O2 -ftree-vectorize -msse4 -ftree-vectorizer-verbose=10 -march=core2 -g -c. For certain nested for-loop ...
1
vote
3answers
7k views
Using Matlab to integrate accelerometer data into velocity and position
I have test accelerometer data and need to use Matlab to find velocity and position. I need the actual data points for both velocity and position, though, not just the cumulative area under the curve. ...
2
votes
3answers
287 views
Advice wanted on getting rid of loops
I have written a program that works with the 3n + 1 problem (aka "wondrous numbers" and various other things). But it has a double loop. How could I vectorize it?
the code is
count <- ...
2
votes
1answer
1k views
Loop vectorization and how to avoid it
Loop vectorization is when all right-hand-side expressions are computed at the onset. I just discovered my loops are being vectorized (in FORTRAN 77... don't ask). I need my loop condition variable to ...
0
votes
3answers
574 views
Disable vectorized looping in FORTRAN?
Is it possible to bypass loop vectorization in FORTRAN? I'm writing to F77 standards for a particular project, but the GNU gfortran compiles up through modern FORTRANs, such as F95. Does anyone know ...
4
votes
4answers
618 views
how to substitute a for loop in R with an optimized function (lapply?)
I've a data frame with time events on each row. In one row I've have the events types of sender (typeid=1) and on the other the events of the receiver (typeid=2). I want to calculate the delay between ...
5
votes
6answers
557 views
how to avoid loops
HI All,
I'm new to R.
I have two panel data files, with columns "id", "date" and "ret"
file A has a lot more data than file B,
but i'm primarily working with file B data.
Combination of "id" and ...
2
votes
3answers
404 views
Return value from column indicated in same row
I'm stuck with a simple loop that takes more than an hour to run, and need help to speed it up.
Basically, I have a matrix with 31 columns and 400 000 rows. The first 30 columns have values, and the ...
9
votes
3answers
3k views
Introduction to vectorizing in MATLAB - any good tutorials?
I'm looking for any good tutorials on vectorizing (loops) in MATLAB.
I have quite simple algorithm, but it uses two for loops. I know that it should be simple to vectorize it and I would like to ...
1
vote
2answers
446 views
Resources for (Manual and Automatic) Loop Vectorization
I see some resources for gcc, but not for Visual Studio.
Anyone have a treasure trove of references, examples and tricks?