Contents

remainder(dividends:divisors:)

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

Declaration

static func remainder<U, V>(dividends: U, divisors: V) -> [Double] where U : AccelerateBuffer, V : AccelerateMutableBuffer, U.Element == Double, V.Element == Double

See Also

Array-Oriented Arithmetic and Auxiliary Functions