Time Complexity of 2D array

3 vues (au cours des 30 derniers jours)
Yugal Gupta
Yugal Gupta le 12 Nov 2019
Commenté : Walter Roberson le 12 Nov 2019
tic
vcp(i,:) = vcpa(:);
vcn(i,:) = vcna(:);
toc
where, vcpa and vcna are array of size 2. vcp and vcn are 2-D array. the i variable continuously increasing with time. As, the i is increasing, the time given by tic -toc is increasing. Therefore, as i becomes very large, the execution time bacomes very large. Can someone please illustrate the reason behinf this and suggest some alternate way to avoid such problem ?
Thanks in advance.

Réponse acceptée

Cam Salzberger
Cam Salzberger le 12 Nov 2019
Modifié(e) : Cam Salzberger le 12 Nov 2019
Hello Yugal,
What size are vcp and vcn before you start the loop? If you are doing something like this:
vcp = [];
vcn = [];
for i = 1:10
vcp(i, :) = vcpa(:);
vcn(i, :) = vcna(:);
end
then what is happenening is vcp and vcn are growing as the loop runs. They are initially allocated a very small amount of memory because they are empty arrays. As they grow in size, they need larger and larger contiguous memory blocks. This requires MATLAB to reallocate space for them, and copy over their existing data into the new memory block regularly throughout the loop.
If this is what is happening, I highly recommend preallocation of the arrays. You should be seeing a code analyzer warning about the array changing size every loop, which should warn you about this kind of thing in the future.
Also, it's not clear from your code snippet, but if you are not changing the value of vcpa and vcna within the loop, you can more easily create the arrays with something like:
vcp = repmat(vcpa(:), 1, nColumns);
vcn = repmat(vcna(:), 1, nColumns);
-Cam
  2 commentaires
Yugal Gupta
Yugal Gupta le 12 Nov 2019
That's working. Thank you very much.
Walter Roberson
Walter Roberson le 12 Nov 2019
Also writing to columns is faster than writing to rows.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Octave dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by