multiply(addition:_:result:)
Calculates the single-precision element-wise product of a vector and the sum of two vectors.
Declaration
static func multiply<S, T, U, V>(addition: (a: S, b: T), _ vector: U, result: inout V) where S : AccelerateBuffer, T : AccelerateBuffer, U : AccelerateBuffer, V : AccelerateMutableBuffer, S.Element == Float, T.Element == Float, U.Element == Float, V.Element == FloatParameters
- addition:
A tuple that contains the vectors
AandBinD = (A + B) * C. - vector:
The input vector
CinD = (A + B) * C. - result:
The output vector
DinD = (A + B) * C.
Discussion
This function calculates the sums of the first N elements of A and B, multiplies each sum by the corresponding value in C, and writes the result to D.
for (n = 0; n < N; ++n)
D[n] = (A[n] + B[n]) * C[n];[Image]
The following code shows an example of using this function:
let count = 5
let a: [Double] = [ 1, 2, 3, 4, 5]
let b: [Double] = [10, 20, 30, 40, 50]
let c: [Double] = [ 5, 4, 3, 2, 1]
let d = [Double](unsafeUninitializedCapacity: count) {
buffer, initializedCount in
vDSP.multiply(addition: (a, b),
c,
result: &buffer)
initializedCount = count
}
// Prints "[55.0, 88.0, 99.0, 88.0, 55.0]".
print(d)
See Also
Multiplication
multiply(_:_:)multiply(_:_:)multiply(_:_:)multiply(_:_:)multiply(_:_:result:)multiply(_:_:result:)multiply(_:_:result:)multiply(_:_:result:)multiply(_:by:count:useConjugate:result:)multiply(_:by:count:useConjugate:result:)multiply(_:by:result:)multiply(_:by:result:)multiply(addition:_:)multiply(addition:_:)multiply(addition:_:)