枚举中缺少值或空字符串

时间:2013-02-10 16:24:17

标签: matlab matlab-class

有没有办法让这样的枚举:

classdef(Enumeration) bla_type < int32
    enumeration
        bla_one(1)
        bla_2(2)
    end
end

缺少或NaN值?感谢。

1 个答案:

答案 0 :(得分:1)

NaN值适用于浮点类型,但不适用于整数。对于整数,每个位模式都具有数字含义。对于浮点,一些模式保留给NaN和无穷大。

由于您的枚举的基础类型是int32,因此您将无法使用NaN。