Some enumeration members are unrecognized
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Bogdan -Ervin
am 26 Jul. 2025
Kommentiert: Bogdan -Ervin
am 26 Jul. 2025
It may be an elementary question, but I have an enumeration class (in a class folder) which its last 2 members are not recognized. I have the impression that those elements were recognized in Matlab R2020a.
The members I am talking about are Unknown and Nothing. They can not be referenced with Element.Unknown and Element.Nothing, but the rest of the members can be.
Why is it happening and how to solve the issue?
Thank you in advance for response!
EDIT: On my end, when I call Element.Unknown and Element.Nothing I am given the errors "The class Element has no Constant property or Static method named 'Unknown'.", respectively "The class Element has no Constant property or Static method named 'Nothing'."
0 Kommentare
Akzeptierte Antwort
Matt J
am 26 Jul. 2025
Bearbeitet: Matt J
am 26 Jul. 2025
I'm not encountering any problems in 2024b. Perhaps you forget that you implemented a disp method, which displays those members in a unique way.
>> Element.Doom
ans =
Doom
>> Element.Unknown
ans =
???
>> Element.Nothing
ans =
3 Kommentare
Matt J
am 26 Jul. 2025
That sounds more as though you have a 2nd definition of the Element class floating around somewhere on your path. You should check,
which -all Element
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu String finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!