Clear Filters
Clear Filters

In Simulink , How to read bus structure member which is enumeration signal (need to read specific enumerate)

2 views (last 30 days)
one of BUS Structure member is enumeration signal (created classdef for this enum datatype).
How to read specific enumeration from bus in simulink .

Accepted Answer

Nehemiae
Nehemiae on 9 Mar 2023
Hello,
Enumerated types in Simulink are read using the Enumerated Constant block, where one can give a single enumeration member in the Value, or an array of enumeration members as an array in the Value. This is demonstrated below, where the first two Enumerated Constant blocks have a single value, while the third Enumerated Constant block has the array of all enumerations. The bus will simply pass through this data, and hence one can read the required enumeration from the array using the Selector block and by giving the required index in the enumeration as the Index.
classdef BasicColors < Simulink.IntEnumType
enumeration
Red(0)
Yellow(1)
Green(2)
end
end

More Answers (0)

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!