필터 지우기
필터 지우기

problem with enumeration class

조회 수: 25 (최근 30일)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2016년 8월 10일
편집: per isakson 2016년 8월 10일
function data
a = classenum(c,d)
end
function data will pass the two arguments c and d to classenum. classenum looks like below
classdef classenum
enumeration
Jan, Feb, March, April
end
methods
function a = classenum(c,d)
.
end
end
end
Problem is when i run the function data it is not passing the argument c and d to classenum
and i am getting the error as '' No value has been provided for the enumeration member. For an enumeration derived from a built-in class, a value must be provided for each enumeration member''.

채택된 답변

Adam
Adam 2016년 8월 10일
You have to create an object of an enumeration class by defining the enumeration e.g.
myEnumObj = classenum.Feb;
As far as I am aware you cannot have a normal constructor taking arguments for an enumeration class.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Enumerations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by