MATLAB App Designer <--> Simulink
Show older comments
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.
Accepted Answer
More Answers (0)
Categories
Find more on Modeling in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!