Skip to main content
. 2019 Sep 16;21(9):897. doi: 10.3390/e21090897
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(Bmax,Cmax,Amin,)

  •    && Feature1≤min(Amax,Bmin,Cmin,) then

  •     return A.

  •    end if

  •    if Feature≥max(Amax,Cmax,Bmin,) && Feature1≤min(Bmax,Amin,Cmin,) then

  •     return B.

  •    end if

  •    if Feature≥max(Amax,Bmax,Cmin,) && Feature1≤min(Cmax,Amin,Bmin,) then

  •     return C.

  •    end if

  •   end for

  • end for