Effacer les filtres
Effacer les filtres

how to create an enumeration class of strings ??

24 vues (au cours des 30 derniers jours)
Owen Zhang
Owen Zhang le 6 Déc 2018
Hi,
I'd like to create some enumeration classes to replace the hard-coded string values. But I met the problem occurs in the attached picture.
It's OK to derive from int , but fails to derive from char or string.
Anyone has some idea ? thank you in advance.
(I need the string values , to guarantee the code transition.)
  1 commentaire
Greg
Greg le 6 Déc 2018
Why not just use a protected categorical array?

Connectez-vous pour commenter.

Réponse acceptée

Owen Zhang
Owen Zhang le 7 Déc 2018
i used the following approaches of using class constants.
and to replace hardcoded from:
if strcmp(somevar, 'PDOS')
to
if strcmp(somevar, LossModels.PDOS)
Untitled.png
but still , it's curious why enumeration class of strings is not supported in matlab.

Plus de réponses (1)

Brad Carman
Brad Carman le 12 Mar 2020
It's also possible to so simply convert the enumeration name to a char
classdef SolverType
enumeration
NE_BACKWARD_EULER_ADVANCER
NE_PARTITIONING_ADVANCER
end
end
Then to get char:
char(SolverType.NE_BACKWARD_EULER_ADVANCER)
Which gives
ans =
'NE_BACKWARD_EULER_ADVANCER'

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by