Calculates the sample variance of a set of values given in a vector of any size with one dimension applying the following equation:
Where:
y = variance(x)
Where:
x
= vector of rank 1 with real numbers.
See this example to use an array of
rank larger than 1.y
= real number of the same kind as x
with the sample variance of x
.The following program calculates the variance of a vector:
PROGRAM varianceExample
USE FU_Statistics, ONLY: variance
IMPLICIT NONE
REAL, DIMENSION(5) :: x = [1., 2., 3., 4., 5.]
WRITE(*,*) variance(x)
END PROGRAM varianceExample
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=sp), | intent(in), | DIMENSION(:) | :: | x |
Vector of real numbers to calculate the sample variance. It can have any size and it must have one dimension. |
Real number with the sample variance of x.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=dp), | intent(in), | DIMENSION(:) | :: | x |
Vector of real numbers to calculate the sample variance. It can have any size and it must have one dimension. |
Real number with the sample variance of x.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=qp), | intent(in), | DIMENSION(:) | :: | x |
Vector of real numbers to calculate the sample variance. It can have any size and it must have one dimension. |
Real number with the sample variance of x.