how to get the data from edit box of GUI and use in other .m file
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
madhu T S
el 8 de Mayo de 2015
Hello ppl... I want to know that how to use the data or value in the edit box of the GUI and I want to use the same data in some other .m file.. please let me know asap
thanks and regards madhu
0 comentarios
Respuesta aceptada
Image Analyst
el 8 de Mayo de 2015
Use get():
myVar = get(handleToEditBox, 'String');
Then you can save it to a mat file with save
save(matFullFileName, 'myVar');
that the other m-file can read in with load(matFullFileName).
0 comentarios
Más respuestas (1)
CAM
el 8 de Mayo de 2015
To supplement the above answer:
Add str2num if it is a value, so you get the correct datatype.
myVar = str2num(get(handleToEditBox, 'String'));
If the file already exists, add the "-append" switch to the save statement
save(matFullFileName, 'myVar', '-append')
Hope that helps.
2 comentarios
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!