daxpy(3f) - [BLAS:DOUBLE_BLAS_LEVEL1] constant times a vector plus a vector.
Synopsis
Definition
Options
Dy
Authors
Further Details
See Also
subroutine daxpy(n,da,dx,incx,dy,incy)
.. Scalar Arguments .. double precision,intent(in) :: da integer,intent(in) :: incx,incy,n .. .. Array Arguments .. double precision,intent(in) :: dx(*) double precision,intent(inout) :: dy(*) ..
DAXPY constant times a vector plus a vector. uses unrolled loops for increments equal to one.
N is INTEGER number of elements in input vector(s)
DA is DOUBLE PRECISION On entry, DA specifies the scalar alpha.
DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) )
INCX is INTEGER storage spacing between elements of DX
DY is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCY ) )
INCY is INTEGER storage spacing between elements of DY
o Univ. of Tennessee o Univ. of California Berkeley o Univ. of Colorado Denver o NAG Ltd. date:November 2017
jack dongarra, linpack, 3/11/78. modified 12/3/93, array(1) declarations changed to array(*)
Online html documentation available at http://www.netlib.org/lapack/explore-html/
Nemo Release 3.1 | daxpy (3) | February 23, 2025 |