poly Interface

public interface poly

Calls

interface~~poly~~CallsGraph interface~poly poly proc~poly_ddv poly_ddv interface~poly->proc~poly_ddv proc~poly_msk_ddv poly_msk_ddv interface~poly->proc~poly_msk_ddv proc~poly_rr poly_rr interface~poly->proc~poly_rr proc~poly_rrv poly_rrv interface~poly->proc~poly_rrv proc~poly_dd poly_dd interface~poly->proc~poly_dd proc~poly_cc poly_cc interface~poly->proc~poly_cc proc~poly_msk_rrv poly_msk_rrv interface~poly->proc~poly_msk_rrv proc~poly_rc poly_rc interface~poly->proc~poly_rc proc~poly_ddv->proc~poly_dd proc~poly_msk_ddv->proc~poly_ddv proc~poly_rrv->proc~poly_rr proc~poly_msk_rrv->proc~poly_rrv

Contents


Module Procedures

public function poly_rr(x, coeffs)

Arguments

Type IntentOptional AttributesName
real(kind=SP), intent(in) :: x
real(kind=SP), intent(in), DIMENSION(:):: coeffs

Return Value real(kind=SP)

public function poly_rrv(x, coeffs)

Arguments

Type IntentOptional AttributesName
real(kind=SP), intent(in), DIMENSION(:):: x
real(kind=SP), intent(in), DIMENSION(:):: coeffs

Return Value real(kind=SP), DIMENSION(size(x))

public function poly_dd(x, coeffs)

Arguments

Type IntentOptional AttributesName
real(kind=DP), intent(in) :: x
real(kind=DP), intent(in), DIMENSION(:):: coeffs

Return Value real(kind=DP)

public function poly_ddv(x, coeffs)

Arguments

Type IntentOptional AttributesName
real(kind=DP), intent(in), DIMENSION(:):: x
real(kind=DP), intent(in), DIMENSION(:):: coeffs

Return Value real(kind=DP), DIMENSION(size(x))

public function poly_rc(x, coeffs)

Arguments

Type IntentOptional AttributesName
complex(kind=SPC), intent(in) :: x
real(kind=SP), intent(in), DIMENSION(:):: coeffs

Return Value complex(kind=SPC)

public function poly_cc(x, coeffs)

Arguments

Type IntentOptional AttributesName
complex(kind=SPC), intent(in) :: x
complex(kind=SPC), intent(in), DIMENSION(:):: coeffs

Return Value complex(kind=SPC)

public function poly_msk_rrv(x, coeffs, mask)

Arguments

Type IntentOptional AttributesName
real(kind=SP), intent(in), DIMENSION(:):: x
real(kind=SP), intent(in), DIMENSION(:):: coeffs
logical(kind=LGT), intent(in), DIMENSION(:):: mask

Return Value real(kind=SP), DIMENSION(size(x))

public function poly_msk_ddv(x, coeffs, mask)

Arguments

Type IntentOptional AttributesName
real(kind=DP), intent(in), DIMENSION(:):: x
real(kind=DP), intent(in), DIMENSION(:):: coeffs
logical(kind=LGT), intent(in), DIMENSION(:):: mask

Return Value real(kind=DP), DIMENSION(size(x))