Advanced MATLAB: Dynamic field names
We have MATLAB users come into The MathWorks to present their work in MATLAB from time to time. Recently there was an interesting presentation with some really great “Clutter classification” algorithms in a GUI. One of the questions that came out of that discussion was how to get rid of a bunch of EVAL statements from their code. The following code shows how they can be avoided using “dot parens notation”, or Dynamic Field Names as they are formally known.
a.doug = ‘Hull’
a.jiro = ‘Doke’
name = ‘doug’;
last = a.doug
eval([‘last = a.’ name]) %BAD
last = a.(name) %GOOD
댓글
댓글을 남기려면 링크 를 클릭하여 MathWorks 계정에 로그인하거나 계정을 새로 만드십시오.