Clear Filters
Clear Filters

How to speed up for loop with a few calculations?

1 view (last 30 days)
My question is how to speed up for loop with a number of different calculations, such as abs, multiplication, sqrt, ^2, cos(), and array indexing? (there is array(i) )
for i=ind1:ind2
A = ( array(i)*(i+ind2) + array(i)*(i+ind1) ) / sqrt((ind2-i)^2 + (ind1-i)^2);
A = cos(pi*A);
% and so on
end
Is it possible to use some really complicated bsxfun(), repmat()? I am not looking for exact solution, just would like to know if it is possible, when, and which functions might be helpful

Accepted Answer

Guillaume
Guillaume on 15 Jun 2016
Your question is far too generic to be able to give a precise answer.
The first mistake people do is operate on an array one element at a time instead of operating on the whole array at once. Other than the fact that you constantly overwrite A, this appears to be the mistake you've made in your example.
%assuming array is a row vector
v = ind1:ind2; %make a vector of the values i iterates over
A = (array .* (v + ind2) + array .*(v + ind1)) ./ hypot(ind2 - v, ind1 - v);
A = cos(pi*A);
Note the use of .* and ./ for elementwise operation. See array vs matrix operations.
For more complicated stuff, bsxfun, repmat, ndgrid, etc. may be useful indeed.
  1 Comment
Dawid Smolen
Dawid Smolen on 15 Jun 2016
Although the question was general, you have helped me. Now it seems like basics, but because of the complicated math, I was confused and couldn't think of simple solution. Thank you

Sign in to comment.

More Answers (0)

Categories

Find more on Operating on Diagonal Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!