Newer
Older
abgabensammlungSS15 / mr / Ub5 / TOOLBOX_calib / mean_std_robust.m
@MaxXximus92 MaxXximus92 on 20 May 2015 96 bytes mr Ub5 ea UB5 initial
function [m,s] = mean_std_robust(x);

x = x(:);

m = median(x);

s = median(abs(x - m))*1.4836;