---
title: "catlas_zaxpby(_:_:_:_:_:_:_:)"
framework: accelerate
role: symbol
role_heading: Function
path: "accelerate/catlas_zaxpby(_:_:_:_:_:_:_:)"
---

# catlas_zaxpby(_:_:_:_:_:_:_:)

Computes the sum of two vectors, scaling each one separately (double-precision complex).

## Declaration

```swift
func catlas_zaxpby(_ N: __LAPACK_int, _ ALPHA: OpaquePointer, _ X: OpaquePointer?, _ INCX: __LAPACK_int, _ BETA: OpaquePointer, _ Y: OpaquePointer?, _ INCY: __LAPACK_int)
```

## Parameters

- `N`: Number of elements in the vector.
- `ALPHA`: Scaling factor for X.
- `X`: Input vector X.
- `INCX`: Stride within X. For example, if incX is 7, every 7th element is used.
- `BETA`: Scaling factor for Y.
- `Y`: Input vector Y.
- `INCY`: Stride within Y. For example, if incY is 7, every 7th element is used.

## Discussion

Discussion On return, the contents of vector Y are replaced with the result. important: Apple provides the BLAS and LAPACK libraries under the Accelerate framework to be in line with LAPACK 3.9.1. Starting with iOS 26, iPadOS 26, macOS 26, tvOS 26, visionOS 26, and watchOS 26, the libraries are in line with LAPACK 3.12.0. These new interfaces provide additional functionality, as well as a new ILP64 interface. To use the new interfaces, define ACCELERATE_NEW_LAPACK before including the Accelerate or vecLib headers. For ILP64 interfaces, also define ACCELERATE_LAPACK_ILP64. For Swift projects, specify ACCELERATE_NEW_LAPACK=1 and ACCELERATE_LAPACK_ILP64=1 as preprocessor macros in Xcode build settings under Apple Clang - Preprocessing > Preprocessor Macros.

## See Also

### CATLAS and CBLAS vector functions

- [catlas_caxpby(_:_:_:_:_:_:_:)](accelerate/catlas_caxpby(_:_:_:_:_:_:_:).md)
- [catlas_cset(_:_:_:_:)](accelerate/catlas_cset(_:_:_:_:).md)
- [catlas_daxpby(_:_:_:_:_:_:_:)](accelerate/catlas_daxpby(_:_:_:_:_:_:_:).md)
- [catlas_dset(_:_:_:_:)](accelerate/catlas_dset(_:_:_:_:).md)
- [catlas_saxpby(_:_:_:_:_:_:_:)](accelerate/catlas_saxpby(_:_:_:_:_:_:_:).md)
- [catlas_sset(_:_:_:_:)](accelerate/catlas_sset(_:_:_:_:).md)
- [catlas_zset(_:_:_:_:)](accelerate/catlas_zset(_:_:_:_:).md)
- [cblas_sdot(_:_:_:_:_:)](accelerate/cblas_sdot(_:_:_:_:_:).md)
- [cblas_sdsdot(_:_:_:_:_:_:)](accelerate/cblas_sdsdot(_:_:_:_:_:_:).md)
- [cblas_cdotc_sub(_:_:_:_:_:_:)](accelerate/cblas_cdotc_sub(_:_:_:_:_:_:).md)
- [cblas_cdotu_sub(_:_:_:_:_:_:)](accelerate/cblas_cdotu_sub(_:_:_:_:_:_:).md)
- [cblas_ddot(_:_:_:_:_:)](accelerate/cblas_ddot(_:_:_:_:_:).md)
- [cblas_dsdot(_:_:_:_:_:)](accelerate/cblas_dsdot(_:_:_:_:_:).md)
- [cblas_zdotc_sub(_:_:_:_:_:_:)](accelerate/cblas_zdotc_sub(_:_:_:_:_:_:).md)
- [cblas_zdotu_sub(_:_:_:_:_:_:)](accelerate/cblas_zdotu_sub(_:_:_:_:_:_:).md)
