MATLAB App Designer <--> Simulink
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Doug Rilee
el 30 de Oct. de 2018
Respondida: Fangjun Jiang
el 30 de Oct. de 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.
0 comentarios
Respuesta aceptada
Fangjun Jiang
el 30 de Oct. de 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)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!