Sorry I meant to attach a version with a scalar parameter value to keep it simple. Actually in the example I have a vector value, [2 5 8 9], so instead try change it to a new vector values using m.Parameters.Value = '[1 2 3 4]' or some other vector
How to programmatically change tunable masked parameters while a simulation is running?
5 次查看(过去 30 天)
显示 更早的评论
I would like to programmatically change masked parameters while a simulation is running. I have made the parameters "tunable" however if I attempt to change them programmatically I get the error Cannot change property 'Value' of ... while simulation is running. I can however double click on the block and change the paramaters in the mask dialog box while the simulation is running demonstrating that they are in fact tunable. Is there some way to programmatically change a tunable masked parameter while the simulation is running?
The problem is demonstrated using the attached model.
1. Start the model running
2. Double click on the Subsystem block and confirm that you can edit/change the parameter called x while the simulation is running
3. On the command line get the corresponding Simulink.Mask object using m = Simulink.Mask.get('tryparam/Subsystem')
4. on the command line type m.Parameters.tunable and confirm that it is 'on'
5. Attempt to set the tunable masked parameter using m.Parameters.Value = '5' (or any other number), you will see the error: Cannot change property 'Value' of 'tryparam/Subsystem' while simulation
is running
I have also submitted this as a support request, but in case anyone in the community has an answer I thought I would check more widely
采纳的回答
Chaitanya Mallela
2020-10-20
I have brought the issue of 'Programmatically changing the tunable masked parameters while running the model' to the notice of our developers. They will investigate the matter further.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Author Block Masks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!