LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
|
complex*16 function zdotu | ( | integer | n, |
complex*16, dimension(*) | zx, | ||
integer | incx, | ||
complex*16, dimension(*) | zy, | ||
integer | incy ) |
ZDOTU
!> !> ZDOTU forms the dot product of two complex vectors !> ZDOTU = X^T * Y !> !>
[in] | N | !> N is INTEGER !> number of elements in input vector(s) !> |
[in] | ZX | !> ZX is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) !> |
[in] | INCX | !> INCX is INTEGER !> storage spacing between elements of ZX !> |
[in] | ZY | !> ZY is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) !> |
[in] | INCY | !> INCY is INTEGER !> storage spacing between elements of ZY !> |
!> !> jack dongarra, 3/11/78. !> modified 12/3/93, array(1) declarations changed to array(*) !>
Definition at line 82 of file zdotu.f.