Adding enumerators to classes
조회 수: 10 (최근 30일)
이전 댓글 표시
Hi,
I'm trying to add a list of enumerators to class...see below for what i want
classdef Commodities
enumeration
Wheat (1001)
HS (1001)
end
properties
Imports
Exports
Production %same as above but dest will obviously be empty
Consumption
end
end
unfortunately, it tells me that i can't have properties and an enumeration within a class. That's not right surely, is it? Any body know a workaround without creating another enumeration class?
If it is I'll just change the enumeration to properties block with an attribute of constant.
Any help on this would be much appreciated!!!
댓글 수: 0
답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Software Development Tools에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!