add(multiplication:_:result:)
Calculates the double-precision element-wise sum of the product of two vectors, and a scalar value.
Declaration
static func add<T, U, V>(multiplication: (a: T, b: U), _ scalar: Double, result: inout V) where T : AccelerateBuffer, U : AccelerateBuffer, V : AccelerateMutableBuffer, T.Element == Double, U.Element == Double, V.Element == DoubleParameters
- multiplication:
A tuple that contains the vectors
AandBinD = (A * B) + C. - scalar:
The input scalar value
CinD = (A * B) + C. - result:
The output vector
DinD = (A * B) + C.
Discussion
This function calculates the element-wise product of vectors A and B, adds scalar value C to the product, and writes the result to vector D.
for (n = 0; n < N; ++n)
D[n] = A[n] * B[n] + C;[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
let d = [Double](unsafeUninitializedCapacity: count) {
buffer, initializedCount in
vDSP.add(multiplication: (a, b),
c,
result: &buffer)
initializedCount = count
}
// Prints "[15.0, 45.0, 95.0, 165.0, 255.0]".
print(d)