Contents

pow(bases:exponents:result:)

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

Declaration

static func pow<T, U, V>(bases: T, exponents: U, result: inout V) where T : AccelerateBuffer, U : AccelerateBuffer, V : AccelerateMutableBuffer, T.Element == Double, U.Element == Double, V.Element == Double

See Also

Array-Oriented Power Functions