필터 지우기
필터 지우기

Is there any ways that I can preallocate the unknown sized array or matirx?

조회 수: 4 (최근 30일)
I Just want to know if I can make a preallocate array.
Please also explain me how much difference is there between the preallocated program and the unpreallocated one.. (for a small program).

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 10월 7일
편집: Ameer Hamza 2020년 10월 7일
Pre-allocation will make a huge difference if your array size is very large. See a comparison here: https://www.mathworks.com/help/matlab/matlab_prog/preallocating-arrays.html. That being said, for a small array size, you might not notice a considerable difference. However, as a general principle, pre-allocation is a good idea. If the array size is unknown initially, you can do incremental growth of the array. This FEX package by John: https://www.mathworks.com/matlabcentral/fileexchange/8334-incremental-growth-of-an-array-revisited has an excellent implementation of incremental pre-allocation. You can directly use it in your project.
  댓글 수: 1
Wai Han
Wai Han 2020년 10월 8일
Thank you. The code explains to me the significant ideas behind the preallocation and how to use it.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by