drscl#
Functions
-
void cdrscl(const INT n, const f32 sa, c64 *restrict sx, const INT incx)#
CDRSCL multiplies an n-element complex vector x by the real scalar 1/a.
This is done without overflow or underflow as long as the final result x/a does not overflow or underflow.
Parameters
innThe number of components of the vector x.
insaThe scalar a which is used to divide each component of x. sa must be >= 0, or the subroutine will divide by zero.
inoutsxComplex*16 array, dimension (1+(n-1)*abs(incx)). The n-element vector x.
inincxThe increment between successive values of the vector sx. incx > 0.
void cdrscl(
const INT n,
const f32 sa,
c64* restrict sx,
const INT incx
);
Functions
-
void zdrscl(const INT n, const f64 sa, c128 *restrict sx, const INT incx)#
ZDRSCL multiplies an n-element complex vector x by the real scalar 1/a.
This is done without overflow or underflow as long as the final result x/a does not overflow or underflow.
Parameters
innThe number of components of the vector x.
insaThe scalar a which is used to divide each component of x. sa must be >= 0, or the subroutine will divide by zero.
inoutsxComplex*16 array, dimension (1+(n-1)*abs(incx)). The n-element vector x.
inincxThe increment between successive values of the vector sx. incx > 0.
void zdrscl(
const INT n,
const f64 sa,
c128* restrict sx,
const INT incx
);