% 平均值(mean)与中间值(median)是两个概念% 例子>> A = fix(10*rand(1,10))A = 9 2 6 4 8 7 4 0 8 4>> m = mean(A)m = 5.2000>> md = median(A)md = 5
是