How to bring a output value from simulink model into matlab GUI

조회 수: 2 (최근 30일)
vidhya
vidhya 2017년 6월 1일
편집: MBD4FUN 2017년 6월 1일
I can feed a value from GUI to Simulink model(two inputs to a product block and a output(Display block form SIM lib)) and it works. But how to get the output value from SIM to GUI? To feed two inputs from GUI to Simulink model i have used the following code which is working fine
******* function edit1_Callback(hObject, eventdata, handles) ******* NewVal = str2double(get(hObject,'String')); ******* set_param('untitled1/Constant','Value',num2str(NewVal));*********
and to get the output from SIM to GUI i have used the following code which is not working
******* b = str2num(get_param('untitled1/Display','value'));********* set(handles.edit4,'string',b);*********
This simple thing is really frustrating. Help me out i don't want to die with this

답변 (1개)

MBD4FUN
MBD4FUN 2017년 6월 1일
편집: MBD4FUN 2017년 6월 1일
Take a look at the following link https://stackoverflow.com/questions/24727636/read-value-of-display-block-in-simulink-using-get-param
Happy scripting!

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by