Dynamics names in parfor loop

4 views (last 30 days)
arnaud ensberg
arnaud ensberg on 13 Apr 2016
Commented: Stephen23 on 21 Oct 2019
is it possible to creat a variables with dynamices names in parfor loop
i try this code
for i = 1:N
eval(['A' num2str(i) '= 5'])
end
but i obtain "transparency violation" error .

Accepted Answer

Walter Roberson
Walter Roberson on 13 Apr 2016
No. All accezses must be obvious from the text of the code.
You can put the code into a function, as then MATLAB would know that the reference was local instead of possibly being to someone created before the loop.
Creating names using eval is not recommended and there are almost always better ways such as dynamic field names

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!