Time Complexity of 2D array

7 views (last 30 days)
Yugal Gupta
Yugal Gupta on 12 Nov 2019
Commented: Walter Roberson on 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.

Accepted Answer

Cam Salzberger
Cam Salzberger on 12 Nov 2019
Edited: Cam Salzberger on 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 Comments
Yugal Gupta
Yugal Gupta on 12 Nov 2019
That's working. Thank you very much.
Walter Roberson
Walter Roberson on 12 Nov 2019
Also writing to columns is faster than writing to rows.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!