view m-toolbox/classes/+utils/@math/Skew.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents f0afece42f48
children
line wrap: on
line source

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Compute the sample (bias-corrected) skewness. 
% 
% CALL 
% 
% p = Skew(x);
% 
% VERSION:     $Id: Skew.m,v 1.1 2011/02/25 10:04:07 congedo Exp $
%
% HISTORY:     25-02-2011 G. Congedo
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function s = Skew(x)

n = numel(x);
mu3 = sum((x-mean(x)).^3)/n;
sig = sqrt(sum((x-mean(x)).^2)/n);
s = mu3/(sig)^3;

% Bias correction
s = sqrt(n*(n-1))/(n-2)*s;

end