Effacer les filtres
Effacer les filtres

"sf_intern​al_predica​teOutput" outputs in workspace during model simulation??

9 vues (au cours des 30 derniers jours)
Song Decn
Song Decn le 17 Fév 2018
Modifié(e) : Linus le 22 Mar 2019
Hi, if I run my model, there are lots of following messages showing in workspace. Does anyone know how I can change my model to delete these messages?? Thanks
sf_internal_predicateOutput =
0
sf_internal_predicateOutput =
1
sf_internal_predicateOutput =
0
sf_internal_predicateOutput =
0
sf_internal_predicateOutput =
0
  2 commentaires
Jan Schnee
Jan Schnee le 22 Mar 2018
Hey, you are not alone, I have the same messages and have not found a solution yet. So hopefully someone has a solution soon.

Connectez-vous pour commenter.

Réponse acceptée

Fl0w
Fl0w le 12 Sep 2018
I had this problem with a transition guard looking like this: [after(3,tick), receive(my_msg)]
It wasn't working as intended either and I changed it to this expression: [after(3,tick) && receive(my_msg)]
After that the messages disappeared. So I'm guessing in the first expression the message receival isn't part of the condition but rather an action that somehow gets executed after the time check. And that action doesn't have a semicolon after it, so its return value gets printed.
  1 commentaire
Linus
Linus le 22 Mar 2019
Modifié(e) : Linus le 22 Mar 2019
Know the question is old, but reached this during searching, so adding my 2 cents.
Had the same problem and made a similar change to get it to work:
changed:
[...
value > low_ limit &&...
value < high_limit ...
]
to:
[value > low_ limit &&...
value < high_limit]
In a stateflow-transition

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 复杂逻辑 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!