Enum datatype mismatch error
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Guillaume
el 13 de Mayo de 2019
Movida: Sabin
el 25 de Sept. de 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 comentario
Ver también
Categorías
Más información sobre Switches and Breakers en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!