From string to a variable
Mostrar comentarios más antiguos
Hi everybody, i've a string array array={'dog', 'bike', 'donut'} for example from here i need, for each word, a numeric variable with the same name
dog = 5;
bike = 7;
donut = 54;
(doesn't matter the numbers the most importan thing is to create the variable from the string in array )
Respuesta aceptada
Más respuestas (2)
Paulo Silva
el 18 de Abr. de 2011
assignin('base',char(array(1)),5)
assignin('base',char(array(2)),7)
assignin('base',char(array(3)),54)
1 comentario
federico valenti
el 18 de Abr. de 2011
Walter Roberson
el 18 de Abr. de 2011
0 votos
Categorías
Más información sobre Elementary Math en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!