Files

20 lines
440 B
Matlab
Raw Permalink Normal View History

2025-06-04 14:13:22 +08:00
classdef ENUM_AG < Simulink.IntEnumType
enumeration
OFF (0)
COMMAND(1)
HDOT_MC (2)
end
methods (Static = true)
function retVal = getDescription()
retVal = 'Auto Gyroplane type';
end
function retVal = getDefaultValue()
retVal = ENUM_AG.OFF;
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end