Contents

pow(bases:exponents:)

Returns each double-precision element in the bases vector, raised to the power of the corresponding element in the exponents vector.

Declaration

static func pow<U, V>(bases: U, exponents: V) -> [Double] where U : AccelerateBuffer, V : AccelerateMutableBuffer, U.Element == Double, V.Element == Double

See Also

Array-Oriented Power Functions