moment_stat Derived Type

type, public :: moment_stat

statistical moments


Components

Type Visibility Attributes Name Initial
real(kind=R8), public :: Kk

sixth moment

real(kind=R8), public :: Ku

kurtosis

real(kind=R8), public :: Sk

skewness

real(kind=R8), public :: Ss

fifth moment

real(kind=R8), public :: mu

mean

real(kind=R8), public :: si

standard deviation

real(kind=R8), public :: va

variance


Source Code

   type moment_stat
   !! statistical moments
      real(kind=R8) :: mu  !! *mean*
      real(kind=R8) :: va  !! *variance*
      real(kind=R8) :: si  !! *standard deviation*
      real(kind=R8) :: Sk  !! *skewness*
      real(kind=R8) :: Ku  !! *kurtosis*
      real(kind=R8) :: Ss  !! *fifth moment*
      real(kind=R8) :: Kk  !! *sixth moment*
   endtype moment_stat