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

# vDSP_DFT_Interleaved_Execute(_:_:_:)

Calculates the single-precision discrete Fourier transform (DFT)  for a vector of interleaved complex values.

```
func vDSP_DFT_Interleaved_Execute(_ Setup: vDSP_DFT_Interleaved_Setup, _ Iri: UnsafePointer<DSPComplex>, _ Ori: UnsafeMutablePointer<DSPComplex>)
```

## Parameters

`Setup`

The DFT setup structure for this transform.

`Iri`

A single-precision vector that contains the input values.

`Ori`

A single-precision vector that contains the output values. The output can equal the input, but this function doesn’t support any other overlap of the input and output vectors.

## Discussion

This function supports in-place operation where the output and input parameters are equal. The transform length must equal the transform length specified in the setup structure.

> Important:
> For best performance, make sure the two vector addresses you pass to this function are 16-byte-aligned.

---

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)