when does changing variable's value affects its structure address?

조회 수: 3 (최근 30일)
Yakir Nisim
Yakir Nisim 2021년 1월 6일
댓글: James Tursa 2021년 1월 19일
Hey,
I was wondering why somtimes MatLab will change variable's structure address when the value of the variable is changed while in other time the address will remain the same. I am attaching 2 example cases below.
Thank you!

채택된 답변

James Tursa
James Tursa 2021년 1월 12일
편집: James Tursa 2021년 1월 12일
In addition to what Walter has written, I would point out that all of the rules for variable creation, assignment, and sharing have never been published. And these rules have undergone many changes over the years. You can often uncover what has happened with a particular line in a particular MATLAB version using format debug and/or a mex routine to give you some insight into the rules, but that's the best you can do. From a practical standpoint, you will never be able to discover all of these rules even for a particular version of MATLAB. And whatever you discover for one MATLAB version might not apply to a different version of MATLAB.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2021년 1월 7일
When you do a literal initialization, a hidden copy of the value is taken for re-use if you reinitialize in exactly the same way. The hidden copy is a shared version, so the very first time you write to the variable, MATLAB needs to unshare the variable, which changes its address.

카테고리

Help CenterFile Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by