MATLAB App Designer <--> Simulink

2 views (last 30 days)
Doug Rilee
Doug Rilee on 30 Oct 2018
Answered: Fangjun Jiang on 30 Oct 2018
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

Fangjun Jiang
Fangjun Jiang on 30 Oct 2018
Use the build-in model 'f14' as an example, if you drag in a Knob block and connect it to the Gain block Zw, the changing of the knob position actually changes the value of the variable 'Zw' in the base workspace. You can move the knob, then check the value of Zw in the base workspace to see it changes. You could also change the value of Zw in the base workspace first, then update the model and see the knob position changes.
So the command you need to run is for example as below. You don't change anything regarding the Knob block. Rather, you need to change the variable for which it is connected to.
assignin('base','Zw',55)

More Answers (0)

Categories

Find more on Simulink Functions 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!