number from simulink to guide
2 次查看(过去 30 天)
显示 更早的评论
Hello I have a problem in simulink. As I can monitor my program guide (static-text) result (integer) That gives me a display of simulink
3 个评论
回答(2 个)
Gerd
2011-7-1
OK, now I think I know what you want. If you take a constant block in Simulink and write a variable name for the "Constant Value" you can change that value from the workspace. This procedure is also working when using a gui. You have to make sure to convert the number to a string num2str() in order to display the right value in text box. set(handles.textbox,'String',num2str(variable));
Gerd
Paulo Silva
2011-7-2
%Your system must be already open or loaded, if not do it!!!!
set_param(gcs, 'SimulationCommand', 'start') %start the simulation
while (strcmp(get_param(gcs, 'SimulationStatus'),'running'))
rto = get_param([gcs '/Display'],'RuntimeObject')
set(handles.text1,'string',num2str(rto.InputPort(1).Data))
pause(0.3) %wait 0.3 seconds, this is the refresh rate
end
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Block Libraries 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!