Time Complexity of 2D array

조회 수: 7 (최근 30일)
Yugal Gupta
Yugal Gupta 2019년 11월 12일
댓글: Walter Roberson 2019년 11월 12일
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.

채택된 답변

Cam Salzberger
Cam Salzberger 2019년 11월 12일
편집: Cam Salzberger 2019년 11월 12일
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
Yugal Gupta
Yugal Gupta 2019년 11월 12일
That's working. Thank you very much.
Walter Roberson
Walter Roberson 2019년 11월 12일
Also writing to columns is faster than writing to rows.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Octave에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by