Divides a double-precision scalar value by a double-precision vector.
SDKs
- iOS 4.0+
- macOS 10.4+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Framework
- Accelerate
Declaration
func vDSP_svdivD(_ __A: Unsafe Pointer<Double>, _ __B: Unsafe Pointer<Double>, _ __IB: v DSP _Stride, _ __C: Unsafe Mutable Pointer<Double>, _ __IC: v DSP _Stride, _ __N: v DSP _Length)
Parameters
__A
Pointer to double-precision real input scalar.
__B
Double-precision real input vector.
__IB
Stride for
B
.__C
Double-precision real output vector.
__IC
Stride for
C
.__N
The number of elements to process.
Discussion
This function calculates the scalar value A
divied by the first N
elements of B
, writing the result to C
:

The operation is:
for (n = 0; n < N; ++n)
C[n] = A / B[n];