Problem with eval and char(13)
Afficher commentaires plus anciens
Hello
My problem :
chaine = b.BeamSequence.Item_1.BeamDescription with 1 change every loop
chainefinale = 'DM=1.3692
SEG=2' with a char(13) inside (before SEG)
the eval ([chaine '=' chainefinale]) return error.....
What can i do ?
Thanks
Alain
Réponses (2)
Walter Roberson
le 21 Oct 2013
Don't use eval.
itemnumber = 1;
b.BeamSequence.(sprintf('Item_%d', itemnumber)).BeamDescription = chainefinale;
Alain
le 22 Oct 2013
0 votes
Catégories
En savoir plus sur Variables dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!