Tagged Questions
3
votes
2answers
38 views
Find specific occurances within a vector in MATLAB, without for-loop?
I have a problem that seems to be simple but maybe I am missing something. Let us say I have: vector = [10:1:19];. I have another vector, want = [11 16 19]; I simply want a way in which a command will ...
6
votes
1answer
50 views
How to loop a matrix with a window in Matlab
I have a n-by-m matrix in Matlab and I would like to loop the matrix with a window of specific size and then do some calculations (e.g. mean, standard deviation) on the values inside the window. The ...
4
votes
2answers
83 views
MATLAB fast (componentwise) vector operations are…really fast
I am writing MATLAB scripts since some time and, still, I do not understand how it works "under the hood". Consider the following script, that do some computation using (big) vectors in three ...
1
vote
1answer
72 views
Matlab - Vectorizing nested loops when the inner loop depends on the outer ones
I'm working on a function which takes an n-by-1 array (called "ts") as input and creates a n-by-n matrix (called "V"), where each element of V is either 0 or 1.
Now imagine "ts" as a plot: If one can ...
2
votes
2answers
100 views
How to calculate Euclidean distance (and save only summaries) for large data frames
I've written a short 'for' loop to find the minimum euclidean distance between each row in a dataframe and all the other rows (and to record which row is closest). In theory this avoids the errors ...
1
vote
2answers
53 views
How to vectorize matrix whose index is matrix in MATLAB?
I have two for-loops embedded in a code that is repeated many times. I want to speed things up:
for i = 1:10
for j = 1:10
A(i,j) = B(i,j,D(i,j))*C(i,j);
end
end
Here D consist of integers ...
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 ...
0
votes
0answers
57 views
How to prevent Signal drifting when changing frequency
When I recreate a signal it seems to look great. But when I try and increase it's frequency (which is done in a for loop and the variable new_freq=2) it starts to drift.
See Image below (The top ...
2
votes
1answer
93 views
Vectorize loop that involves matrix value updates in MATLAB
The for loop is as follows:
N = 2;T = 3;
Trials = rand(N,T);
for i=1:N
for j=1:T
AverageValue = mean2(Trials);
Trials(i,j) = Trials(i,j) - AverageValue;
end
end
The ...
2
votes
2answers
73 views
Raplacing for loop by a single line statement in MATLAB
I have this function which needs to be run hundreds of times. It contains a for loop which I am trying to remove to make the function faster. Can someone help me replace the loop by a single line ...
1
vote
4answers
143 views
How can I write SSE instruction in C for two for loops?
Using the library 'immintrin.h', I am able to write SSE instruction for simple for loops and operations. However, how can I write SSE instructions for the shown statement?
for (int i =0; i<n; ...
4
votes
2answers
79 views
How to substitute a for-loop with vecorization acting several thousand times per data.frame row?
Being still quite wet behind the ears concerning R and - more important - vectorization, I cannot get my head around how to speed up the code below.
The for-loop calculates a number of seeds falling ...
0
votes
0answers
62 views
MATLAB: for-loop vectorization (logiacal values)
I would like to vectorize the following for-loops.
The idea is to record in the LT matrix the links specified in the NEc and FEc variables (logical variables of zeros and ones representing links).
LT ...
-1
votes
2answers
111 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 ...
3
votes
1answer
64 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
45 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 ...
1
vote
2answers
64 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
76 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 ...
6
votes
2answers
172 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
2answers
69 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
1answer
108 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
107 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
1answer
113 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:
...
1
vote
1answer
106 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
99 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;
...
9
votes
3answers
254 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
1answer
152 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. ...
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 ...
2
votes
1answer
66 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 ...
8
votes
1answer
222 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
...
0
votes
0answers
46 views
matlab vectorization for-loop
I'm sort of a novice matlab user at best. Then, How to effectively vectorize the loop in this code?
se = strel('diamond',2);
row = size(P, 1); % where P is a RGB image
col = size(P, 2);
crist = ...
6
votes
3answers
114 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
...
-1
votes
1answer
107 views
Need to optimize this matlab code..vectorization will help or not? [duplicate]
Possible Duplicate:
Optimization a recurring matlab code
Is vectorization a good option in optimizing this piece of code? What criteria decides, whether we vectorize a code or not? What ...
0
votes
2answers
108 views
vectorization of for-loops with if-conditions gets slower
I have one for-loop that I'm working on vectorizing it. The problem is, once vectorized, the code is 3 times slower.
The original code, which is part of a thermodynamic algorithm, is:
...
2
votes
1answer
352 views
R - vectorised conditional replace
Hi I'm trying manipulate a list of numbers and I would like to do so without a for loop, using fast native operation in R. The pseudocode for the manipulation is :
By default the starting total is ...
1
vote
2answers
135 views
R - logic manipulation via vector operations
I would like to convert this piece of logic with purely matrix operations instead of for loops. The logic is that in my binary value vector, I want to note every transition point (i.e. where 0 turns ...
3
votes
1answer
259 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. ...
4
votes
3answers
208 views
R - Need help speeding up a for loop
I have two dataframes; one is 48 rows long and looks like this:
name = Z31
Est.Date Site Cultivar Planting
1 24/07/2011 Birchip Axe 1
2 08/08/2011 Birchip Bolac 1
...
0
votes
2answers
1k views
Write a for/while loop with “if/else” in a more elegant way?
I've written this code :
A is a nXm matrix
[nA, mA] = size(A);
currentVector(nA,mA) = 0;
for i = 1: nA
for j = 1 : mA
if A (i,j) ~= 0
currentVector(i,j) = ceil(log10( ...
3
votes
3answers
196 views
Vectorizing a MATLAB loop
I'm trying to do my best and not use loops in Matlab, but I find it very hard sometimes .
For example I wrote this code :
vector = zeros(p,1);
diagDominantFlag = 1;
for row = 1:p
for col = 1:q
...
1
vote
2answers
609 views
Double Summation in MATLAB and vectorized loops
Here's my attempt in implementing this lovely formula.
http://dl.dropbox.com/u/7348856/Picture1.png
%WIGNER Computes Wigner-Distribution on an image (difference of two images).
function[wd] = ...
0
votes
2answers
565 views
Vectorization for and if loops
I know vectorized code is faster than using loops. So I've been trying to do this with this peace of program. I was hoping someone could show me how to improve these for and if loops. The program is ...
2
votes
1answer
218 views
Faster code in R
FYI: I have edited this significantly since my first edition. This simulation has been reduced from taking 14 hours to 14 minutes.
I am new to programming but I have made a simulation that tries to ...
1
vote
1answer
180 views
vectorizing code in Matlab
I have an ASCII file containing a number of surfaces created in a seismic interpretation software. They are a family of interpolated surfaces between a top surface and a bottom surface are a family ...
0
votes
1answer
66 views
Vecorizing an inner for loop
I would like to vectorize the inner loop in MATLAB of the folowing nested loop construction:
for j = 1:MM
S4 = 0;
for i = 1:MM
S4 = S4 + b(i,1)*func(i,x(j),0,1);
end
...
1
vote
1answer
651 views
vectorization - importing excel files into matlab
I've written the following function for importing excel files into matlab. The function works fine, where by inserting the path name of the files, the scripts imports them into the workspace. The ...
13
votes
5answers
426 views
r: for loop operation with nested indices runs super slow
I have an operation I'd like to run for each row of a data frame, changing one column. I'm an apply/ddply/sqldf man, but I'll use loops when they make sense, and I think this is one of those times. ...
2
votes
2answers
1k views
Matlab: template matching using vectorization
I'm trying to improve speed of this code, but I can't understand how to use vectorization here (instead of for-loop). The function is from my impementation of SAD using template matching.
function ...
1
vote
1answer
219 views
R Replace Dataframe Records using Vectorization
I'd like to know if there is any way of solving the following problem in an efficient manner. I have a collection of X-Y points. For each point I need to generate a certain number of records and, ...
2
votes
4answers
743 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) ...
