Pre-allocate memory to zeros or NaN?
조회 수: 41 (최근 30일)
이전 댓글 표시
I'm dealing with large matrix size in a for loop and I currently pre-allocate the matrix to zeros before the for loop, however, this causes me some problems with some math equations I must apply on the matrix. So my question is, does pre-allocating the memory to a NaN matrix recommended? or does MATLAB not like that?
Update for clarification:
Example:
a=zeros(5,5)
for j=1:4:5
v=j;
a(:,j)=v+10;
end
So the problem is if I want to do any calculation with the rows, I will end up including rows 2,3,4 which are now 0, this messes up with my calculations. So I want to explore the option of creating a NaN matrix and using 'omitnan' in my calculations.
댓글 수: 2
KSSV
2021년 8월 5일
It depends on what numbers you are going to fill into matrix. If you fill with zeros what problem it is causing? First what for the loop is?
채택된 답변
Chunru
2021년 8월 5일
편집: Chunru
2021년 8월 5일
If you have skipped some data and want to omit those data later on, then the preallocation with nan is a better options. Especially if you want to use some matlab built in functions (such as mean, std), options are available to omit nans. NaN is the part of IEEE arithmetic representation, it should not have side effect on preallocatio. The only side-effect is when performing calculation (NaN+2=Nan), but you are prepared to ignore NaNs.
추가 답변 (1개)
Sulaymon Eshkabilov
2021년 8월 5일
Of course, you can do memory allocation with nan() as well alike zeros(), e.g.:
k=10; m=15;
M = nan(k, m);
...
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!