problem with enumeration class
显示 更早的评论
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''.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Enumerations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!