Contents

pow(bases:exponents:result:)

Calculates each single-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 == Float, U.Element == Float, V.Element == Float

See Also

Array-Oriented Power Functions