Azzera filtri
Azzera filtri

Dynamics names in parfor loop

6 visualizzazioni (ultimi 30 giorni)
arnaud ensberg
arnaud ensberg il 13 Apr 2016
Commentato: Stephen23 il 21 Ott 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 .

Risposta accettata

Walter Roberson
Walter Roberson il 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

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by