why is it when we use fictree for the same training matrix (same features) but with different order, we do not get the same model and thus not the same error of classification ?
example:
if we have x1,x2,x3 as predictor, training matrix M1=[x1,x2,x3] or M2=[x2,x1,x3] and fitctree(M1,Label), fitctree(M2,Label) will not have the same model. why?