You are here: Symbol Reference > AbstractMtxVec Namespace > Classes > TDenseMtxVec Class > public > Skewness Method > TDenseMtxVec.Skewness Method (double, double)
MtxVec VCL
ContentsIndex
PreviousUpNext
TDenseMtxVec.Skewness Method (double, double)

Skewness (third central momentum).

Pascal
function Skewness(const AMean: double; const AStdDev: double): double; overload;

Calculate the calling object skewness by using mean value AMean and standard deviation AStdDev. Skewness is the third central moment, divided by third power of standard deviation: 

 

 

var a: TVec; c,d: double; begin CreateIt(a); try a.SetIt(False,[1,2,3,4]); d := a.Mean; c := a.Skewness(d, a.StdDev(d)); finally FreeIt(a); end; end;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!