odrpack
Source Files
Modules
Procedures
Abstract Interfaces
Derived Types
Programs
daxpy
Interface
MIT
78 statements
Source File
blas_interfaces.f90
blas_interfaces
daxpy
Contents
None
interface
public pure subroutine daxpy(n, a, x, incx, y, incy)
Arguments
Type
Intent
Optional
Attributes
Name
integer,
intent(in)
::
n
real(kind=dp),
intent(in)
::
a
real(kind=dp),
intent(in)
::
x
(*)
integer,
intent(in)
::
incx
real(kind=dp),
intent(inout)
::
y
(*)
integer,
intent(in)
::
incy
Description
Computation
Y = A*X + Y
.