variant control 'VID==0" used by the block
1 次查看(过去 30 天)
显示 更早的评论
i have trained reinforcement learning agent and would like to implement the agent to convege the system to desire input. i have used variant subset and also select the variant mode. The problem arises when i start simulation it shows as given below. Any help or guidance in this regards will be much appreciated.
1 个评论
Kirthi
2023-2-15
Hello muhammad,
Your variant model needs a control variable to work, you must've set condition as 'VID==0' but didn't not create or initiate the variable. Try creating the variable and setting it to 0. Then run the model.
Hope it helps
回答(1 个)
Dinesh
2024-4-12
Hello,
When you define a variant control inside a variant block, it is assumed that you also have created the variant present in the variant control. For example, in this case, you have defined "VID==0" as the variant control which means if VID=0, a set of blocks get executed and another set of blocks get executed if VID is not 0. You are only defining the condition inside the variant block. But the variant VID itself is not being explicitly set anywhere which leads to this error. You can just create a variable "VID" in the base workspace and initialize it to any value.
Here's a link that might help you understand further: https://www.mathworks.com/help/simulink/ug/set-and-open-active-variants.html
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!