Why the matlab editor (Code Analyser) is not warning about changing size by a variable within a loop
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
In the 2nd example of the following for-loop the variable A definitely changes its size as it does in the 1st example. However, in one case the editor throws a warning message and in the second case it does not. Why?
A = [];
N = 100;
% 1st example
for k = 1:N
M = 10;
for n = M:-1:1
B(n) = n;
end
A = [A,B]; % Warning: Variable appears to change size on every loop iteration
end
% 2nd example
for k = 1:N
M = 10;
for n = M:-1:1
B(n) = n;
end
A(end+1:end+length(B)) = B; % No warning here and faster
end
If I write in simpler way
A = 1; % or A=[];
for k = 1:N
A(end+1:end+2) = [1,1]; % No warning.
end
And, by the way
A = 1; % or A = [];
for k = 1:N
A = [A,[]]; % Warning: Variable 'A' appears to change size on every loop iteration. Consider preallocating for speed
end
That means Code Analyser is not analysing much here
3 commentaires
Réponse acceptée
Cris LaPierre
le 30 Déc 2021
For the same reason you get no warning about B growing inside a loop - MATLAB doesn't know what the index will be until the code is run, so it can't determine with certainty that the variable will be changing size every loop.
3 commentaires
Cris LaPierre
le 30 Déc 2021
Modifié(e) : Cris LaPierre
le 30 Déc 2021
The exact behavior of the code analyzer is not documented, so there is no way to say for certain what it is doing. Use the warnings to learn best practices, and have that help shape how you write your code.
For your second question, when you do not preallocate, MATLAB picks any spot in memory to create the variable. As your variable grows with each loop, the new values are added to contiguous blocks of memory. If at some point your variable runs out of room in the place in memory where it was created, the entire variable gets copied to a new location in the memory with more space. The variable will continue growing until it too runs out of space, at which time it is again moved to a new place in memory.
That's a rough summary. You can read more here. You might also find this MathWorks blog post 'Understanding Array Preallocation' helpful.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!