add(multiplication:_:result:)
Calculates the double-precision element-wise sum of a vector and the product of two vectors.
Declaration
static func add<S, T, U, V>(multiplication: (a: S, b: T), _ vector: U, result: inout V) where S : AccelerateBuffer, T : AccelerateBuffer, U : AccelerateBuffer, V : AccelerateMutableBuffer, S.Element == Double, T.Element == Double, U.Element == Double, V.Element == DoubleParameters
- multiplication:
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 products of the first N elements of A and B, adds each product to 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.add(multiplication: (a, b),
c,
result: &buffer)
initializedCount = count
}
// Prints "[15.0, 44.0, 93.0, 162.0, 251.0]".
print(d)