Intel® Math Kernel Library 2019 Developer Reference - Fortran
Performs element by element subtraction of vector b from vector a.
call vssub( n, a, b, y )
call vmssub( n, a, b, y, mode )
call vdsub( n, a, b, y )
call vmdsub( n, a, b, y, mode )
call vcsub( n, a, b, y )
call vmcsub( n, a, b, y, mode )
call vzsub( n, a, b, y )
call vmzsub( n, a, b, y, mode )
Name |
Type |
Description |
|---|---|---|
n |
INTEGER, INTENT(IN) |
Specifies the number of elements to be calculated. |
a, b |
DOUBLE PRECISION for vdsub, vmdsub COMPLEX for vcsub, vmcsub DOUBLE COMPLEX for vzsub, vmzsub REAL, INTENT(IN) for vssub, vmssub DOUBLE PRECISION, INTENT(IN) for vdsub, vmdsub COMPLEX, INTENT(IN) for vcsub, vmcsub DOUBLE COMPLEX, INTENT(IN) for vzsub, vmzsub |
Arrays that specify the input vectors a and b. |
mode |
INTEGER(KIND=8), INTENT(IN) |
Overrides global VM mode setting for this function call. See vmlSetMode for possible values and their description. |
Name |
Type |
Description |
|---|---|---|
y |
FORTRAN 77: REAL for vssub, vmssub DOUBLE PRECISION for vdsub, vmdsub COMPLEX for vcsub, vmcsub DOUBLE COMPLEX for vzsub, vmzsub REALINTENT(OUT) for vssub, vmssub DOUBLE PRECISION, INTENT(OUT) for vdsub, vmdsub COMPLEX, INTENT(OUT) for vcsub, vmcsub DOUBLE COMPLEX, INTENT(OUT) for vzsub, vmzsub |
Array that specifies the output vector y. |
The v?Sub function performs element by element subtraction of vector b from vector a.
| Argument 1 | Argument 2 | Result | Exception |
|---|---|---|---|
| +0 | +0 | +0 | |
| +0 | -0 | +0 | |
| -0 | +0 | -0 | |
| -0 | -0 | +0 | |
| +∞ | +∞ | QNAN | INVALID |
| +∞ | -∞ | +∞ | |
| -∞ | +∞ | -∞ | |
| -∞ | -∞ | QNAN | INVALID |
| SNAN | any value | QNAN | INVALID |
| any value | SNAN | QNAN | INVALID |
| QNAN | non-SNAN | QNAN | |
| non-SNAN | QNAN | QNAN |
Specifications for special values of the complex functions are defined according to the following formula
Sub(x1+i*y1,x2+i*y2) = (x1-x2) + i*(y1-y2).
Overflow in a complex function occurs (supported in the HA/LA accuracy modes only) when x1, x2, y1, y2 are finite numbers, but the real or imaginary part of the computed result is so large that it does not fit the target precision. In this case, the function returns ∞ in that part of the result, raises the OVERFLOW exception, and sets the VM Error Status to VML_STATUS_OVERFLOW (overriding any possible VML_STATUS_ACCURACYWARNING status).