|
Algorithm 3 Construct an Evidential Decision Tree |
Require: Set attributes as Features. Set classes as A,B,C, etc.
Ensure: An Evidential Decision Tree.
for All samples do
for All Feature do
if Feature≥max()
&& Feature1≤min() then
return A.
end if
if Feature≥max() && Feature1≤min() then
return B.
end if
if Feature≥max() && Feature1≤min() then
return C.
end if
end for
end for
|