No constructor 'Stateflow.State' with matching signature found.
2 次查看(过去 30 天)
显示 更早的评论
Hello !
I'm trying to create State block :
chart = add_block('sflib/Chart', 'autoDS/Chart');
state = Stateflow.State(chart);
state.Name = 'CMD_28V_Avion';
open_system('autoDS');
It returns me "No constructor 'Stateflow.State' with matching signature found" error.
How can i fix it please ? I'm pretty sure it's not a syntax error
Thank you !
1 个评论
Filip Toman
2019-7-23
编辑:Filip Toman
2019-7-23
curr_chart = m.find('-isa', 'Stateflow.Chart', '-and', 'Name', 'chart_if_test_0');
curr_chart.view;
You first need to find the chart, then inspect it with view. I think if you use add_block you are using a Simulink command that probably returns the handler instead of the real object. Afterwards you can use constructors on object curr_chart.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Stateflow Programmatic Interface 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!