From workspace in realtime
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi.Can somebody tell me, how I can run a simulink block diagram in realtime, which only read data from some variable from Matlab workspace. And which block I have to use???
1 Kommentar
Akzeptierte Antwort
Paulo Silva
am 28 Feb. 2011
Try this with the Matlab Fcn and a Display (or scope)
Matlab Fcn (evalin('caller','MyVar'))-------->Display
or just
Matlab Fcn (MyVar)-------->Display
Now go to your command line and execute MyVar=0, run the simulation with Simulation time Inf, open look at the display value so you can watch the values changing. Keep watching the display while you change the value of MyVar, it does change in real time (or almost). You can use other variable name than MyVar, just change the code inside the Matlab Fcn.
This is just one of the possible solutions.
Here's another but I won't recommend it, to test it do a model with a constant connected to one display, save it and start the simulation with final time Inf.
In one m file run this code:
for MyVar=1:10
set_param('ModelName/Constant','Value',num2str(MyVar))
pause(1);
end
The simulink display will count from 1 to 10 :)
2 Kommentare
Paulo Silva
am 28 Feb. 2011
The only bad part is that it doesn't do anything, I just tried without it and worked lol silly me :(
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Naming Conventions finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!