Calculates the double-precision minimum of the corresponding values of two vectors using specified strides.
SDKs
- iOS 4.0+
- macOS 10.4+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Framework
- Accelerate
Declaration
func vDSP_vminD(_ __A: Unsafe Pointer<Double>, _ __IA: v DSP _Stride, _ __B: Unsafe Pointer<Double>, _ __IB: v DSP _Stride, _ __C: Unsafe Mutable Pointer<Double>, _ __IC: v DSP _Stride, _ __N: v DSP _Length)
Parameters
__A
Double-precision real input vector.
__IA
Stride for
A
.__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 compares the first N
elements of A
with corresponding elements of B
, leaving the lesser (or equal) values as corresponding elements of C
:
for (n = 0; n < N; ++n)
C[n] = A[n] <= B[n] ? A[n] : B[n];