input to structures
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Domain.x='xxxxx';
Domain.y='18 May 2012';
Domain.z='zzz';
Domain.t='tttttt';
Hi, i know how i make structure like up. But i dont know how i can use input function and take "x","y","z","t" variables from users with my GUI ?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 20 de Mayo de 2012
thisfieldname = input('Enter the field you want to change','s');
thisval = input(['Enter the value you want to associate with ' thisfieldname]);
Domain.(thisfieldname) = thisval;
2 comentarios
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!