Contents

copysign(magnitudes:signs:)

Returns each single-precision element in the magnitudes vector, setting its sign to the corresponding elements in the signs vector.

Declaration

static func copysign<U, V>(magnitudes: U, signs: V) -> [Double] where U : AccelerateBuffer, V : AccelerateMutableBuffer, U.Element == Double, V.Element == Double

See Also

Array-Oriented Arithmetic and Auxiliary Functions