Contents

remainder(dividends:divisors:result:)

Calculates the remainder of the double-precision elements in dividends divided by the elements in divisors, using truncating division.

Declaration

static func remainder<T, U, V>(dividends: T, divisors: U, result: inout V) where T : AccelerateBuffer, U : AccelerateBuffer, V : AccelerateMutableBuffer, T.Element == Double, U.Element == Double, V.Element == Double

See Also

Array-Oriented Arithmetic and Auxiliary Functions