how to programtically add junctions and default transition in state flow and connect them
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
wenchao zhang
le 17 Août 2023
Commenté : wenchao zhang
le 22 Août 2023
hello, as following shows i want use script to add the defualt transition and two junction, and connect two junctions, add the action label, how to do
0 commentaires
Réponse acceptée
Fangjun Jiang
le 17 Août 2023
Modifié(e) : Fangjun Jiang
le 17 Août 2023
transition = Stateflow.Transition(ch);
transition.Source = [];% this makes it default transition.
transition.Destination = j2;
transition.LabelString = '{xx;yy;zz;}';
6 commentaires
Fangjun Jiang
le 22 Août 2023
It is char(10) or newline();
transition.LabelString = ['{xx;',newline,'yy;',newline,'zz;}'];
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Complex Logic dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!