matlab - missing value or empty string in enum -
matlab - missing value or empty string in enum -
is there way have enum this:
classdef(enumeration) bla_type < int32 enumeration bla_one(1) bla_2(2) end end
with missing or nan value? thanks.
nan values apply floating-point types, not integers. integers every bit pattern has numeric meaning. floating-point patterns reserved nans , infinities.
since underlying type enum int32, won't able utilize nan.
matlab matlab-class
Comments
Post a Comment