MATLAB App Designer <--> Simulink
이전 댓글 표시
Good morning,
I am trying to put together a proof of concept app for controlling a Simulink Model with App Designer. I am able to create a base app and very simple model. Simply using a Knob control to change a variable in the model. My callback code is currently:
% App Designer
% ----------------------------------------------
% Value changing function: DecelPedalKnob
function SliderValueChanging2(app, event)
changingValue = event.Value;
% this is where I need to add instruction to assign variable to DecelPedal in the model
end
% ----------------------------------------------
I created a "model based" variable called DecelPedal in Simulink and it is tied to a display block.
I've tried a few things like:
set_param(bdroot,'DecelPedal',changingValue);
With no luck. I am sure it is a very simple process. if somone has experience with this I'd greately appreciate it.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Modeling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!