Simulink - Set and use global variable for use in settings
5 次查看(过去 30 天)
显示 更早的评论
Hello everyone,
I was wondering if it was possible to define by any way a global variable (scope of an entire Simulink model) and use it in "Settings" we get by double-clicking an element in Simulink.
For instance, I'd like to define something like "Vcc" and use that for all my CMOS gates in an electrical circuit.
0 个评论
采纳的回答
Sebastian Castro
2017-8-4
Absolutely. All you need to do is define a variable in the MATLAB workspace, for example:
>> Vcc = 5;
... and then any block that uses Vcc in its block parameters can pick this up.
The next step is to have these variables be automatically created when you open the model, by sticking this code in the pre-load callback of the model. https://www.mathworks.com/help/simulink/ug/using-callback-functions.html
- Sebastian
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sources 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!