--------------— axpy ---------------— Constant times a vector plus a vector.
More...
--------------— axpy ---------------— Constant times a vector plus a vector.
Definition at line 178 of file blas.F90.
|
| subroutine | daxpy (n, da, dx, incx, dy, incy) |
| |
| subroutine | zaxpy (n, da, dx, incx, dy, incy) |
| |
| subroutine | dazaxpy (n, da, dx, dy) |
| | A real constant times a complex vector plus a complex vector. More...
|
| |
◆ daxpy()
| subroutine blas_oct_m::blas_axpy::daxpy |
( |
integer, intent(in) |
n, |
|
|
real(real64), intent(in) |
da, |
|
|
real(real64), intent(in) |
dx, |
|
|
integer, intent(in) |
incx, |
|
|
real(real64), intent(inout) |
dy, |
|
|
integer, intent(in) |
incy |
|
) |
| |
- Parameters
-
| [in] | dx | dx(n) |
| [in,out] | dy | dy(n) |
Definition at line 179 of file blas.F90.
◆ zaxpy()
| subroutine blas_oct_m::blas_axpy::zaxpy |
( |
integer, intent(in) |
n, |
|
|
complex(real64), intent(in) |
da, |
|
|
complex(real64), intent(in) |
dx, |
|
|
integer, intent(in) |
incx, |
|
|
complex(real64), intent(inout) |
dy, |
|
|
integer, intent(in) |
incy |
|
) |
| |
- Parameters
-
| [in] | dx | dx(n) |
| [in,out] | dy | dy(n) |
Definition at line 187 of file blas.F90.
◆ dazaxpy()
| subroutine blas_oct_m::blas_axpy::dazaxpy |
( |
integer, intent(in) |
n, |
|
|
real(real64), intent(in) |
da, |
|
|
complex(real64), intent(in), target |
dx, |
|
|
complex(real64), intent(inout), target |
dy |
|
) |
| |
A real constant times a complex vector plus a complex vector.
A real constant scales the real and imaginary parts alike, so this is daxpy over twice as many reals. The complex vectors are reinterpreted rather than copied, as transfer would.
- Parameters
-
| [in] | dx | dx(n) |
| [in,out] | dy | dy(n) |
Definition at line 563 of file blas.F90.
The documentation for this interface was generated from the following file: