LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
|
subroutine icopy | ( | integer | n, |
integer, dimension( * ) | sx, | ||
integer | incx, | ||
integer, dimension( * ) | sy, | ||
integer | incy ) |
ICOPY
!> !> ICOPY copies an integer vector x to an integer vector y. !> Uses unrolled loops for increments equal to 1. !>
[in] | N | !> N is INTEGER !> The length of the vectors SX and SY. !> |
[in] | SX | !> SX is INTEGER array, dimension (1+(N-1)*abs(INCX)) !> The vector X. !> |
[in] | INCX | !> INCX is INTEGER !> The spacing between consecutive elements of SX. !> |
[out] | SY | !> SY is INTEGER array, dimension (1+(N-1)*abs(INCY)) !> The vector Y. !> |
[in] | INCY | !> INCY is INTEGER !> The spacing between consecutive elements of SY. !> |
Definition at line 74 of file icopy.f.