Are there enumerated types in MATLAB? If not, what are the alternatives?
|
You can get some of the functionality with new-style MATLAB classes:
This isn't really a type, but since MATLAB is loosely typed, if you use integers, you can do things that approximate it:
In this case, MATLAB "enums" are close to C-style enums - substitute syntax for integers. With the careful use of static methods, you can even make MATLAB enums approach Ada's in sophistication, but unfortunately with clumsier syntax. |
|||||||
|
|
Starting from R2010b, MATLAB supports enumerations. Example from the documentation:
|
||||
|
You could also use Java enum classes from your Matlab code. Define them in Java and put them on your Matlab's javaclasspath.
You can reference them by name in M-code.
It won't catch comparisons to other types, though. And comparison to string has an odd return size.
|
|||
|
|
|
There is actually a keyword in MATLAB R2009b called 'enumeration'. It seems to be undocumented, and I cannot say I know how to use it, but the functionality is probably there. You can find it in
|
||||
|
|
If you want to do something similar to what Marc suggested, you could simply make a structure to represent your enumerated types instead of a whole new class:
One benefit is that you can easily access structures in two different ways. You can specify a field directly using the field name:
or you can use dynamic field names if you have the field name in a string:
In truth, there are a few benefits to doing what Marc suggested and creating a whole new class to represent an "enum" object:
However, if you don't need that sort of complexity and just need to do something quick, a structure is likely the easiest and most straight-forward implementation. It will also work with older versions of MATLAB that don't use the newest OOP framework. |
||||
|
|
|
You could make a Matlab class that behaves like a Java's old typesafe enum pattern. A modification of Marc's solution could take it from C-style typedefs to more like Java-style typesafe enums. In this version, the values in the constants are typed Color objects. The upsides:
Downsides:
On the whole, I don't know which approach is better. Haven't used either in practice.
Here's a function to exercise it.
Example of use:
A minor quirk in both approaches: the C convention of putting the constant on the left hand of the "==" to prevent bad assignment doesn't help as much here. In Matlab, if you accidentally use "=" with this constant on the LHS, instead of an error, it'll just create a new local struct variable named Colors, and it will mask the enum class.
|
||||
|
|
|
After trying out the other suggestions on this page, I landed on Andrew's fully object-oriented approach. Very nice - thanks Andrew. In case anyone is interested, however, I made (what I think are) some improvements. In particular, I removed the need to double-specify the name of the enum object. The names are now derived using reflection and the metaclass system. Further, the eq() and ismember() functions were re-written to give back properly-shaped return values for matrices of enum objects. And finally, the check_type_safety() function was modified to make it compatible with package directories (e.g. namespaces). Seems to work nicely, but let me know what you think:
Thanks, Mason |
|||
|
|
|
If you have access to the Statistics Toolbox, you might consider using a categorical object. |
||||
|
|
|
If you need the enumerated types just for passing to C# or .NET assembly, you can construct and pass the enums with MATLAB 2010:
you can also check the official MathWorks answer at
|
||||
|
|