Image Processing Toolkit User Guide > Reference J–Z > SKEWNESS Function (PV-WAVE Extreme Advantage)
  

SKEWNESS Function (PV-WAVE Extreme Advantage)
Computes the skewness of an array.
Usage
result = SKEWNESS(array)
Input Parameters
array—An array of any data type except string.
Returned Value
result—A scalar value containing the skewness of the array.
Keywords
None.
Discussion
Computes the skewness of array(k, l) as:
where mean = AVG(array) and std = STDEV(array).
The skewness is a useful measure for statistical texture analysis.
Example
; Read an image.
image = IMAGE_READ(!IP_Data + 'noise_test.tif')
; Compute the skewness of the image.
skew = SKEWNESS(image('pixels'))
PRINT, 'Skewness = ', skew
See Also
ENTROPY,   KURTOSIS,   MODE,   RANGEUNIFORMITY

Version 2017.0
Copyright © 2017, Rogue Wave Software, Inc. All Rights Reserved.