How can I make the browse pushbutton on my GUI in Matlab functional?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Cordelle
el 3 de Jun. de 2013
Respondida: Emanuel
el 4 de Mayo de 2015
Code:
FileName = 'kWilliams.txt';
FileName;FilePath = uigetfile();
ExPath = [FilePath FileName];
Currently, it opens up the windows gui that "select file to open". However, when I try to select a file and open the file everthing just disappears
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 3 de Jun. de 2013
[FileName,FilePath ]= uigetfile();
ExPath = fullfile(FilePath, FileName)
5 comentarios
Azzi Abdelmalek
el 3 de Jun. de 2013
function Browse1_Callback(hObject, eventdata, handles)
[FileName,FilePath ]= uigetfile();
ExPath = fullfile(FilePath, FileName);
set(handles.Filename1,'string',ExPath)
Más respuestas (1)
Emanuel
el 4 de Mayo de 2015
Hello, I want now to simulate the browsed file (.mdl) with a push button. what command do I use? set_param(' ??? ,'SimulationCommand','start'); thanks for the information
0 comentarios
Ver también
Categorías
Más información sobre Migrate GUIDE Apps 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!