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.
类别
在 帮助中心 和 File Exchange 中查找有关 Linear Algebra 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!