dinpr_intr Abstract Interface

abstract interface
public function dinpr_intr(n, x, sx, y, sy)

Arguments

Type IntentOptional AttributesName
integer, intent(in) :: n

The length of the vectors

real(kind=r8), intent(in), dimension(*):: x

The first input vector

integer, intent(in) :: sx

The stride in memory between successive elements of x

real(kind=r8), intent(in), dimension(*):: y

The second input vector

integer, intent(in) :: sy

The stride in memory between successive elements of y

Return Value real(kind=r8)

Inner product of x and y

Description

Interface for function which calculates vector inner products. This has the same interace as the BLAS routine ddot.