how to create an enumeration class of strings ??

33 visualizaciones (últimos 30 días)
Owen Zhang
Owen Zhang el 6 de Dic. de 2018
Respondida: Brad Carman el 12 de Mzo. de 2020
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 comentario
Greg
Greg el 6 de Dic. de 2018
Why not just use a protected categorical array?

Iniciar sesión para comentar.

Respuesta aceptada

Owen Zhang
Owen Zhang el 7 de Dic. de 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.

Más respuestas (1)

Brad Carman
Brad Carman el 12 de Mzo. de 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'

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by