Filter löschen
Filter löschen

How to implement transition conditions ?

4 Ansichten (letzte 30 Tage)
Farhan
Farhan am 25 Dez. 2013
Beantwortet: Jorge Calvo am 2 Nov. 2021
Hi, I am a beginner in State Flow Diagrams. I have a query. How to apply more than one condition in state transition for example if I have two states and condition from one state to other is that when heel sensor=1 and toe sensor=1 or ankle velocity >0. How do I apply this condition in state flow.
Looking Forward Farhan

Antworten (1)

Jorge Calvo
Jorge Calvo am 2 Nov. 2021
That would depend on the logic you want to implement, but you could try one of these:
  • [heel==1 & toe==1 | velocity>0]
  • [(heel==1 toe==1) | velocity>0]
Alternatively, you can define your logic by using a transition path with multiple transitions joined by connective junctions. For more information, see https://www.mathworks.com/help/stateflow/ug/connective-junctions.html.

Kategorien

Mehr zu Complex Logic finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by