<!--
{
  "availability" : [
    "iOS: 5.0.0 -",
    "iPadOS: 5.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 10.4.0 -",
    "tvOS: -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Accelerate",
  "identifier" : "/documentation/Accelerate/vvpowf(_:_:_:_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Function",
  "symbol" : {
    "kind" : "Function",
    "modules" : [
      "Accelerate"
    ],
    "preciseIdentifier" : "c:@F@vvpowf"
  },
  "title" : "vvpowf(_:_:_:_:)"
}
-->

# vvpowf(_:_:_:_:)

Raises each element in an array to the power of the corresponding element in a second array of single-precision values.

```
func vvpowf(_: UnsafeMutablePointer<Float>, _: UnsafePointer<Float>, _: UnsafePointer<Float>, _: UnsafePointer<Int32>)
```

## Discussion

### Parameters:

- parameter 1: The output array, *z*.
- parameter 2: The exponent input array, *y*.
- parameter 3: The base input array, *x*.
- parameter 4: The number of elements in the arrays.

The following code shows an example of using [`vvpowf(_:_:_:_:)`](/documentation/Accelerate/vvpowf(_:_:_:_:)):

```objc
float x[] = {3, 2, 10, 6};
float y[] = {2, 4, 3, 2};
float z[4];
int n = 4;
 
vvpowf(z, y, x, &n);
 
NSLog(@"z: [%lf, %lf, %lf, %lf]", z[0], z[1], z[2], z[3]);
```

The following special values of `x` and `y` produce the given value of `z`:

|x (base)         |y (exponent)|z (result)|
|-----------------|------------|----------|
|`odd integer, <0`|`+/-0`      |`+/-inf`  |
|`odd integer, >0`|`+/-0`      |`+/-0`    |
|`otherwise, <0`  |`+/-0`      |`+inf`    |
|`otherwise, >0`  |`+/-0`      |`+0`      |
|`+/-inf`         |`-1`        |`1`       |
|`NaN`            |`+1`        |`1`       |
|`+/-0`           |`NaN`       |`1`       |
|`-inf`           |`|x|<1`     |`+inf`    |
|`-inf`           |`|x|>1`     |`+0`      |
|`+inf`           |`|x|<1`     |`+0`      |
|`+inf`           |`|x|>1`     |`+inf`    |
|`odd integer, <0`|`-inf`      |`-0`      |
|`odd integer, >0`|`-inf`      |`-inf`    |
|`otherwise, <0`  |`-inf`      |`+0`      |
|`otherwise, >0`  |`-inf`      |`+inf`    |
|`<0`             |`+inf`      |`+0`      |
|`>0`             |`+inf`      |`+inf`    |
|`non-integer`    |`<0`        |`NaN`     |

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)