About preallocating for speed

35 次查看(过去 30 天)
Dear Contributers,
There is a " for loop" in my program and Matlab gives me a suggestion to consider "Preallocating" for speed. I want to learn and do that. However, I don't know where to start to learn it. Of course, I looked the documents in mathworks but I found a few documents in there. I can read all of them but I don't want to rush headlong into this topic. Please, I am asking your ideas where I should start from those documents;
By the way, My code is;
for k1 =1: length(X)
for k2 =1: length(X_inv)
DE(k1,k2)= hypot(X(k1)-X_inv(k2), Y(k1)-Y_inv(k2));
end
end
And Matlab suggested me to preallocate the DE
I am not sure whether this question is appropriate for here or not. If it is not okay, accept my apologies.

采纳的回答

John D'Errico
John D'Errico 2015-12-2
编辑:John D'Errico 2015-12-3
When you grow an array incrementally as you are doing with DE, MATLAB is forced to reallocate the entire array at EVERY iteration, copying over the entire mess just to add ONE element. This will cause the operation to get slower, and the time required will grow quadratically. SO it will get SLOW.
You know in the end EXACTLY how large DE will be. So just add ONE extra line before the loop.
DE = zeros(length(X),length(X_inv));
This essentially creates the array in advance, filling it with zeros. It need no longer reallocated at each iteration, because it will no longer need to change size at every step.
Much of the time, preallocation is not needed. MATLAB is not a language where you need to initialize/allocate every array. Variables that are scalars, and will remain so are never an issue. It is only when an array is dynamically grown that preallocation is important. A problem arises when you don't know the final size of your array. Even there, there are tricks that one can do. I posted a submission to the FEX long ago that allows the user to store information in a form that can be more efficiently grown, then at the end, you can unpack the object into a regular array.
  4 个评论
SINDU GOKULAPATI
SINDU GOKULAPATI 2021-5-17
编辑:Stephen23 2021-5-17
hey john im facing a similar issue , for context below is my code
a=csvread('D:\sem6\PROJECT\hygdata.csv',1,5,[1,5,5068,7]); %reading x,y,z
n=5068;
//r = zeros(1,n) %error:Unable to perform assignment because brace indexing is not supported for variables of this type.
for i=1:n
r{i} = transpose(a(i,:)); %mztrix [x y z]
end
what is the alternative here?
Stephen23
Stephen23 2021-5-17
"what is the alternative here?"
Preallocate the array using the correct class:
r = cell(1,n)

请先登录,再进行评论。

更多回答(1 个)

Madison Schossow
Madison Schossow 2018-3-8
try doing length(X):-1:1

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by