Replacing Arrays and Matrices
이전 댓글 표시
Is it a good idea to overwrite an array with matrix? For example -
y=(1:20);
y=y'*y;
Or over-writing matrix/array with a singular value
y=nnz(y>20);
Or both steps one after the other, in succession?
I tried to find any information related to this, but I was unable to find such. Though, there's a good chance my search query might not have optimal.
답변 (2개)
"Is it a good idea to overwrite an array with matrix?"
There is no difference: MATLAB does not have a "matrix" class: all numeric arrays are numeric arrays, regardless of their size (scalar, vector, matrix, ND). Ditto for logical, char, cell, etc arrays. They are all stored as a linear list in memory, then only thing that changes is the header information giving the array size (this is also why RESHAPE is very efficient).
The MATLAB documentation does recommend "Create new variables if data type changes — Create a new variable rather than assigning data of a different type to an existing variable. Changing the class or array shape of an existing variable takes extra time to process."
But I do not see anything in the documentation recommending against reusing variable names in general. I doubt that reassigning variable names will be a significant bottle-neck in your code.
댓글 수: 5
Dyuman Joshi
2022년 9월 7일
Stephen23
2022년 9월 7일
"I was wondering how would it affect memory-wise?"
In what sense? You assign one array to a variable name, then reassign that name to another array. If you use the "old" array in the RHS then for a few moments both arrays will be stored in memory until the "old" one can be garbage collected. But if you used different variable names then you would have both in memory anyway.
Bruno Luong
2022년 9월 7일
It matters AFTER the reassignment.
Dyuman Joshi
2022년 9월 7일
Bruno Luong
2022년 9월 7일
편집: Bruno Luong
2022년 9월 7일
"Does overwriting take time compared to assigning it to a new variable? I think it might depends on the size of array being overwritten?"
No. The extra time is for MATLAB to clear the memory of the old variable, which is negligible and does not depend on the sides of either variable.
I already tells you in my answer below "nothing hurts" accepted the programming habit and memory footprint.
Bruno Luong
2022년 9월 7일
편집: Bruno Luong
2022년 9월 7일
1 개 추천
IMO nothing hurts of using same variable name for different things.
But my experience tell me that is a bad habit of programming. Someone, including you sometime later, who wants to modify the code might get confuse with the homonymous naming.
The good thing in favor of such pratice is that the memory footprint is reduced because you clear out the( old) variable of the worspace.
댓글 수: 1
Dyuman Joshi
2022년 9월 7일
편집: Dyuman Joshi
2022년 9월 7일
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!