dm_statistics_mean Interface

public interface dm_statistics_mean

Calculates mean of real values.


Module Procedures

private recursive function statistics_mean_real32(x) result(mean)

Calculates mean of 4-byte real values.

Arguments

Type IntentOptional Attributes Name
real(kind=r4), intent(inout) :: x(:)

Values.

Return Value real(kind=r4)

Mean value.

private recursive function statistics_mean_real64(x) result(mean)

Calculates mean of 8-byte real values.

Arguments

Type IntentOptional Attributes Name
real(kind=r8), intent(inout) :: x(:)

Values.

Return Value real(kind=r8)

Mean value.