필터 지우기
필터 지우기

How to open a userdefined simulink model from a GUI

조회 수: 2 (최근 30일)
John
John 2015년 9월 22일
댓글: John 2015년 9월 22일
Hi Guys,
i am working on a GUI that has to get access to simulink models. Now i want the user to choose an existing model when pressing the edit-button! The callback of this edit button is shown here:
function edit__Callback(hObject, eventdata, handles)
% hObject handle to edit_ (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
startingFolder = 'C:\Users\powersyslab\Desktop\Draw'
if ~exist(startingFolder, 'dir')
% If that folder doesn't exist, just start in the current folder.
startingFolder = pwd;
end
% Get the name of the mat file that the user wants to use.
defaultFileName = fullfile(startingFolder, '*.mdl')
[baseFileName, folder] = uigetfile(defaultFileName, 'Select a mdl. file')
if baseFileName == 0
% User clicked the Cancel button.
return;
end
Unfortunately the Simulink model is not opened when i run it this way. I can choose a model but when i doubleclick on it, nothing happens. Thats why i added
open_system('C:\Users\powersyslab\Desktop\Draw\baseFilename','tab')
to the end of the code...I want to start the simulink model by accessing it directly with its name chosen from the user. The name is saved in baseFilename. When i do so i get the error
'C:\Users\John\Desktop\Draw\baseFilename' is not a valid Simulink object name and no matching file found.
When i read baseFilename it says
*baseFileName =
Sample_1.mdl*
How can i make that work? i dont know how to start the model Sample_1.mdl correctly!
Would be glad for your help!
Best regards, John

채택된 답변

Walter Roberson
Walter Roberson 2015년 9월 22일
open_system(fullfile('C:\Users\powersyslab\Desktop\Draw', baseFilename), 'tab')
  댓글 수: 6
Walter Roberson
Walter Roberson 2015년 9월 22일
Simulation(name)
John
John 2015년 9월 22일
oha...thanks a lot for your patience! i was a little bit confused! Perfect!!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Simulation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by