diff m-toolbox/classes/+utils/@math/Skew.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/m-toolbox/classes/+utils/@math/Skew.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,25 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+% 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
\ No newline at end of file