mean Interface

public interface mean

Mean of array elements (Specification)


Functions

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)


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