run m-file from push button in Matlab GUI

조회 수: 1 (최근 30일)
jueves jevesion
jueves jevesion 2012년 4월 10일
Hello
I need to run an untitled.m (mfile) by hitting an push button in GUI. This m-file is a script. It contains only some variables. These variables are just numbers, not an array or structure..etc.These numbers are needed for running simulink model.
So this is my problem. GUI,2 buttons, one runs mfile,second runs simulink model using data from mfile. I tried several things which i found using google,i solved nothing
Any ideas? Thanks a lot for your time and help
  댓글 수: 1
Rick Rosson
Rick Rosson 2012년 4월 10일
Is the untitled.m file saved to disk, or is it only in memory?

댓글을 달려면 로그인하십시오.

채택된 답변

Sean de Wolski
Sean de Wolski 2012년 4월 10일
Put:
untitled
In the callback function of the pusbutton.
More per Feedback
If no error is being thrown then it is most likely running. The issue you are seeing is that it's running, generating all of those constants in the callback function workspace and then they are cleared when the callback ends. If you would liek them in the base, then use ASSIGNIN or EVALIN to move those variables from the Callback workspace to the base workspace.
doc evalin
doc assignin
  댓글 수: 1
jueves jevesion
jueves jevesion 2012년 4월 10일
to be perfectly clearly, i tried this. when i ran the gui and push the button there were no errors, but it seemed like nothing happened. nothing in workspace

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

jueves jevesion
jueves jevesion 2012년 4월 10일
This is the button code: "function pushbutton2_Callback(hObject, eventdata, handles)"
@Sean de Wolski If you mean this "function pushbutton2_Callback(hObject, eventdata, handles) untitled"
This was the first thing i tried before i started searching for solutions. I also tried putting these in callback ...run('untitled'),untitled.m ....so on
@Rick Rosson the untitled.m file is on disk, in the same folder as the gui.

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by