You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Vector Structure > Vector Methods > Skewness Method > Vector.Skewness Method (double, double)
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
Vector.Skewness Method (double, double)

Skewness (third central momentum).

Syntax
C#
Visual Basic
public double Skewness(double AMean, double AStdDev);

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: Vector; c,d: double; begin a.SetIt(False,[1,2,3,4]); d := a.Mean; c := a.Skewness(d, a.StdDev(d)); end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!