Enum datatype mismatch error
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello all,
I have developed a model whose all inputs are enum type. I have created the harness for the model, I have given input as signal builder and output as scope to harness model. WHen I give the signal from the signal builder I am getting the data type miss match error as " can't covert double to enum val". I have inserted the converter from double to enum in "signal spec and signal routing" harness model. then also it is giving the error. For the error please see the attached file. Please suggest what need to do.
Best Regards,
Rawootray Patil.
0 commentaires
Réponses (1)
Guillaume
le 13 Mai 2019
Déplacé(e) : Sabin
le 25 Sep 2023
I don't know anything about simulink, but the error message you get seems clear enough. You're trying to convert the value 7 into your enum, but your enum does have an enumeration name associated with a value of 7.
So you'd have to add a enumeration name for a 7 value to your enum, or feed a valid value to the converter.
1 commentaire
Voir également
Catégories
En savoir plus sur Switches and Breakers 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!