stdlib_stats Module

Provides support for various statistical methods. This includes currently descriptive statistics (Specification)



Interfaces

public interface corr

Pearson correlation of array elements (Specification)

  • private module function corr_1_cdp_cdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function corr_1_csp_csp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function corr_1_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function corr_1_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function corr_1_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function corr_1_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function corr_1_rdp_rdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function corr_1_rsp_rsp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function corr_2_cdp_cdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_2_csp_csp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_2_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_2_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_2_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_2_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_2_rdp_rdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_2_rsp_rsp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_mask_1_cdp_cdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function corr_mask_1_csp_csp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=sp)

  • private module function corr_mask_1_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function corr_mask_1_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function corr_mask_1_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function corr_mask_1_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function corr_mask_1_rdp_rdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function corr_mask_1_rsp_rsp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=sp)

  • private module function corr_mask_2_cdp_cdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_mask_2_csp_csp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_mask_2_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_mask_2_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_mask_2_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_mask_2_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_mask_2_rdp_rdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function corr_mask_2_rsp_rsp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

public interface cov

Covariance of array elements (Specification)

  • private module function cov_1_cdp_cdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_1_csp_csp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function cov_1_iint16_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_1_iint32_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_1_iint64_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_1_iint8_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_1_rdp_rdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_1_rsp_rsp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function cov_2_cdp_cdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_2_csp_csp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_2_iint16_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_2_iint32_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_2_iint64_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_2_iint8_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_2_rdp_rdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_2_rsp_rsp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_mask_1_cdp_cdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_mask_1_csp_csp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function cov_mask_1_iint16_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_mask_1_iint32_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_mask_1_iint64_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_mask_1_iint8_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_mask_1_rdp_rdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function cov_mask_1_rsp_rsp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function cov_mask_2_cdp_cdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_mask_2_csp_csp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_mask_2_iint16_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_mask_2_iint32_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_mask_2_iint64_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_mask_2_iint8_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_mask_2_rdp_rdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function cov_mask_2_rsp_rsp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

public interface mean

Mean of array elements (Specification)

  • private module function mean_1_cdp_cdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp)

  • private module function mean_1_csp_csp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp)

  • private module function mean_1_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_1_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_1_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_1_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_1_rdp_rdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_1_rsp_rsp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function mean_2_cdp_cdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_2_csp_csp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_2_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_2_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_2_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_2_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_2_rdp_rdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_2_rsp_rsp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_3_cdp_cdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_3_csp_csp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_3_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_3_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_3_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_3_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_3_rdp_rdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_3_rsp_rsp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_all_1_cdp_cdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp)

  • private module function mean_all_1_csp_csp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp)

  • private module function mean_all_1_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_1_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_1_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_1_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_1_rdp_rdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_1_rsp_rsp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function mean_all_2_cdp_cdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp)

  • private module function mean_all_2_csp_csp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp)

  • private module function mean_all_2_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_2_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_2_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_2_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_2_rdp_rdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_2_rsp_rsp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function mean_all_3_cdp_cdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp)

  • private module function mean_all_3_csp_csp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp)

  • private module function mean_all_3_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_3_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_3_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_3_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_3_rdp_rdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function mean_all_3_rsp_rsp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function mean_mask_1_cdp_cdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value complex(kind=dp)

  • private module function mean_mask_1_csp_csp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value complex(kind=sp)

  • private module function mean_mask_1_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function mean_mask_1_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function mean_mask_1_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function mean_mask_1_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function mean_mask_1_rdp_rdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function mean_mask_1_rsp_rsp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=sp)

  • private module function mean_mask_2_cdp_cdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_2_csp_csp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_2_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_2_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_2_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_2_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_2_rdp_rdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_2_rsp_rsp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_3_cdp_cdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_3_csp_csp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_3_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_3_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_3_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_3_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_3_rdp_rdp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_3_rsp_rsp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function mean_mask_all_1_cdp_cdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value complex(kind=dp)

  • private module function mean_mask_all_1_csp_csp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value complex(kind=sp)

  • private module function mean_mask_all_1_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_1_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_1_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_1_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_1_rdp_rdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_1_rsp_rsp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=sp)

  • private module function mean_mask_all_2_cdp_cdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=dp)

  • private module function mean_mask_all_2_csp_csp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=sp)

  • private module function mean_mask_all_2_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_2_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_2_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_2_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_2_rdp_rdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_2_rsp_rsp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=sp)

  • private module function mean_mask_all_3_cdp_cdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value complex(kind=dp)

  • private module function mean_mask_all_3_csp_csp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value complex(kind=sp)

  • private module function mean_mask_all_3_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_3_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_3_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_3_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_3_rdp_rdp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function mean_mask_all_3_rsp_rsp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=sp)

public interface median

Median of array elements (Specification)

  • private module function median_1_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_1_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_1_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_1_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_1_rdp_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_1_rsp_sp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function median_2_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_2_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_2_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_2_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_2_rdp_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_2_rsp_sp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_3_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_3_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_3_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_3_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_3_rdp_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_3_rsp_sp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_all_1_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_1_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_1_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_1_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_1_rdp_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_1_rsp_sp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function median_all_2_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_2_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_2_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_2_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_2_rdp_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_2_rsp_sp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function median_all_3_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_3_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_3_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_3_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_3_rdp_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function median_all_3_rsp_sp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function median_all_mask_1_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function median_all_mask_1_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function median_all_mask_1_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function median_all_mask_1_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function median_all_mask_1_rdp_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function median_all_mask_1_rsp_sp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    logical, intent(in) :: mask(:)

    Return Value real(kind=sp)

  • private module function median_all_mask_2_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function median_all_mask_2_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function median_all_mask_2_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function median_all_mask_2_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function median_all_mask_2_rdp_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function median_all_mask_2_rsp_sp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=sp)

  • private module function median_all_mask_3_iint16_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function median_all_mask_3_iint32_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function median_all_mask_3_iint64_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function median_all_mask_3_iint8_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function median_all_mask_3_rdp_dp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function median_all_mask_3_rsp_sp(x, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=sp)

  • private module function median_mask_1_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function median_mask_1_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function median_mask_1_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function median_mask_1_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function median_mask_1_rdp_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function median_mask_1_rsp_sp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)

    Return Value real(kind=sp)

  • private module function median_mask_2_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_2_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_2_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_2_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_2_rdp_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_2_rsp_sp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_3_iint16_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_3_iint32_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_3_iint64_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_3_iint8_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_3_rdp_dp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function median_mask_3_rsp_sp(x, dim, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

public interface moment

Central moment of array elements (Specification)

  • private module function moment_1_cdp_cdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp)

  • private module function moment_1_csp_csp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=sp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp)

  • private module function moment_1_iint16_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_1_iint32_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_1_iint64_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_1_iint8_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_1_rdp_rdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_1_rsp_rsp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=sp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function moment_2_cdp_cdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_2_csp_csp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=sp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_2_iint16_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_2_iint32_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_2_iint64_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_2_iint8_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_2_rdp_rdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_2_rsp_rsp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=sp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_3_cdp_cdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_3_csp_csp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=sp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_3_iint16_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_3_iint32_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_3_iint64_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_3_iint8_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_3_rdp_rdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_3_rsp_rsp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=sp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in), optional :: mask

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_all_1_cdp_cdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: order
    complex(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp)

  • private module function moment_all_1_csp_csp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: order
    complex(kind=sp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp)

  • private module function moment_all_1_iint16_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_1_iint32_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_1_iint64_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_1_iint8_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_1_rdp_rdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_1_rsp_rsp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=sp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function moment_all_2_cdp_cdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    complex(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp)

  • private module function moment_all_2_csp_csp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    complex(kind=sp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp)

  • private module function moment_all_2_iint16_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_2_iint32_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_2_iint64_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_2_iint8_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_2_rdp_rdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_2_rsp_rsp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=sp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function moment_all_3_cdp_cdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    complex(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp)

  • private module function moment_all_3_csp_csp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    complex(kind=sp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp)

  • private module function moment_all_3_iint16_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_3_iint32_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_3_iint64_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_3_iint8_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_3_rdp_rdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp)

  • private module function moment_all_3_rsp_rsp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=sp), intent(in), optional :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=sp)

  • private module function moment_mask_1_cdp_cdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value complex(kind=dp)

  • private module function moment_mask_1_csp_csp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=sp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value complex(kind=sp)

  • private module function moment_mask_1_iint16_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function moment_mask_1_iint32_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function moment_mask_1_iint64_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function moment_mask_1_iint8_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function moment_mask_1_rdp_rdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function moment_mask_1_rsp_rsp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=sp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=sp)

  • private module function moment_mask_2_cdp_cdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_2_csp_csp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=sp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_2_iint16_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_2_iint32_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_2_iint64_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_2_iint8_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_2_rdp_rdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_2_rsp_rsp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=sp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_3_cdp_cdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:,:)

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_3_csp_csp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=sp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:,:)

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_3_iint16_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_3_iint32_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_3_iint64_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_3_iint8_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_3_rdp_rdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_3_rsp_rsp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=sp), intent(in), optional :: center(merge(size(x,1),size(x,2),mask=1
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_all_1_cdp_cdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: order
    complex(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value complex(kind=dp)

  • private module function moment_mask_all_1_csp_csp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: order
    complex(kind=sp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value complex(kind=sp)

  • private module function moment_mask_all_1_iint16_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_1_iint32_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_1_iint64_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_1_iint8_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_1_rdp_rdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_1_rsp_rsp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: order
    real(kind=sp), intent(in), optional :: center
    logical, intent(in) :: mask(:)

    Return Value real(kind=sp)

  • private module function moment_mask_all_2_cdp_cdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    complex(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=dp)

  • private module function moment_mask_all_2_csp_csp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    complex(kind=sp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=sp)

  • private module function moment_mask_all_2_iint16_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_2_iint32_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_2_iint64_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_2_iint8_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_2_rdp_rdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_2_rsp_rsp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    real(kind=sp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=sp)

  • private module function moment_mask_all_3_cdp_cdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    complex(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value complex(kind=dp)

  • private module function moment_mask_all_3_csp_csp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    complex(kind=sp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value complex(kind=sp)

  • private module function moment_mask_all_3_iint16_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_3_iint32_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_3_iint64_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_3_iint8_dp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_3_rdp_rdp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=dp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp)

  • private module function moment_mask_all_3_rsp_rsp(x, order, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    real(kind=sp), intent(in), optional :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=sp)

  • private module function moment_mask_scalar_2_cdp_cdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_2_csp_csp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=sp), intent(in) :: center
    logical, intent(in) :: mask(:,:)

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_2_iint16_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_2_iint32_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_2_iint64_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_2_iint8_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_2_rdp_rdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_2_rsp_rsp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=sp), intent(in) :: center
    logical, intent(in) :: mask(:,:)

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_3_cdp_cdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_3_csp_csp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=sp), intent(in) :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_3_iint16_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_3_iint32_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_3_iint64_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_3_iint8_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_3_rdp_rdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_mask_scalar_3_rsp_rsp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=sp), intent(in) :: center
    logical, intent(in) :: mask(:,:,:)

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_2_cdp_cdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_2_csp_csp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=sp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_2_iint16_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_2_iint32_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_2_iint64_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_2_iint8_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_2_rdp_rdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_2_rsp_rsp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=sp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_3_cdp_cdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_3_csp_csp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    complex(kind=sp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value complex(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_3_iint16_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_3_iint32_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_3_iint64_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_3_iint8_dp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_3_rdp_rdp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=dp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function moment_scalar_3_rsp_rsp(x, order, dim, center, mask) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: order
    integer, intent(in) :: dim
    real(kind=sp), intent(in) :: center
    logical, intent(in), optional :: mask

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

public interface var

Variance of array elements (Specification)

  • private module function var_1_cdp_cdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_1_csp_csp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_1_iint16_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_1_iint32_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_1_iint64_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_1_iint8_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_1_rdp_rdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_1_rsp_rsp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_2_cdp_cdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_2_csp_csp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_2_iint16_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_2_iint32_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_2_iint64_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_2_iint8_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_2_rdp_rdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_2_rsp_rsp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_3_cdp_cdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_3_csp_csp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_3_iint16_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_3_iint32_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_3_iint64_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_3_iint8_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_3_rdp_rdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_3_rsp_rsp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_all_1_cdp_cdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_1_csp_csp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_all_1_iint16_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_1_iint32_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_1_iint64_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_1_iint8_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_1_rdp_rdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_1_rsp_rsp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_all_2_cdp_cdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_2_csp_csp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_all_2_iint16_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_2_iint32_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_2_iint64_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_2_iint8_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_2_rdp_rdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_2_rsp_rsp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_all_3_cdp_cdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_3_csp_csp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_all_3_iint16_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_3_iint32_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_3_iint64_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_3_iint8_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_3_rdp_rdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_all_3_rsp_rsp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    logical, intent(in), optional :: mask
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_mask_1_cdp_cdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_1_csp_csp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_mask_1_iint16_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_1_iint32_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_1_iint64_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_1_iint8_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_1_rdp_rdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_1_rsp_rsp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_mask_2_cdp_cdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_2_csp_csp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_2_iint16_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_2_iint32_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_2_iint64_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_2_iint8_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_2_rdp_rdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_2_rsp_rsp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_3_cdp_cdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_3_csp_csp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_3_iint16_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_3_iint32_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_3_iint64_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_3_iint8_dp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_3_rdp_rdp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_3_rsp_rsp(x, dim, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    integer, intent(in) :: dim
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp), (merge(size(x,1),size(x,2),mask=1

  • private module function var_mask_all_1_cdp_cdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:)
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_1_csp_csp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:)
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_mask_all_1_iint16_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:)
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_1_iint32_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:)
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_1_iint64_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:)
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_1_iint8_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:)
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_1_rdp_rdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:)
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_1_rsp_rsp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:)
    logical, intent(in) :: mask(:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_mask_all_2_cdp_cdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_2_csp_csp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_mask_all_2_iint16_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_2_iint32_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_2_iint64_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_2_iint8_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_2_rdp_rdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_2_rsp_rsp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:)
    logical, intent(in) :: mask(:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_mask_all_3_cdp_cdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=dp), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_3_csp_csp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    complex(kind=sp), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)

  • private module function var_mask_all_3_iint16_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int16), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_3_iint32_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int32), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_3_iint64_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int64), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_3_iint8_dp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    integer(kind=int8), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_3_rdp_rdp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=dp), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=dp)

  • private module function var_mask_all_3_rsp_rsp(x, mask, corrected) result(res)

    Arguments

    Type IntentOptional Attributes Name
    real(kind=sp), intent(in) :: x(:,:,:)
    logical, intent(in) :: mask(:,:,:)
    logical, intent(in), optional :: corrected

    Return Value real(kind=sp)



Fortran-lang/stdlib was developed by fortran-lang/stdlib contributors
© 2024 Creative Commons License
28ae6e0

Documentation generated by FORD on 2024-04-25 16:49