如何使用matlab脚本将自由运行计数器添加到Simulink模型? 如果我们使用:
add_block('built-in/Counter Free-Running','mySystem/Counter')
我们收到错误:
There is no block named 'built-in/Counter Free-Running'
答案 0 :(得分:3)
无法通过'built-in'
访问计数器块。应该从simulink/Sources/
访问此块以及块库上Sources pallete上的其他块,因此在这种情况下,正确的名称为'simulink/Sources/Counter Free-Running'
。例如:
add_block('simulink/Sources/Counter Free-Running','mySystem/Counter')