<!--
{
  "availability" : [
    "iOS: 4.0.0 -",
    "iPadOS: 4.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/vDSP_vasm",
  "metadataVersion" : "0.1.0",
  "role" : "Function",
  "symbol" : {
    "kind" : "Function",
    "modules" : [
      "Accelerate"
    ],
    "preciseIdentifier" : "c:@F@vDSP_vasm"
  },
  "title" : "vDSP_vasm"
}
-->

# vDSP_vasm

Calculates the single-precision element-wise product of the sum of two vectors and a scalar value, using the specified stride.

```
extern void vDSP_vasm(const float *__A, vDSP_Stride __IA, const float *__B, vDSP_Stride __IB, const float *__C, float *__D, vDSP_Stride __ID, vDSP_Length __N);
```

## Parameters

`__A`

The input vector `A` in `D = (A + B) * C`.

`__IA`

The distance between the elements in the input vector `A`.

`__B`

The input vector `B` in `D = (A + B) * C`.

`__IB`

The distance between the elements in the input vector `B`.

`__C`

The input scalar value `C` in `D = (A + B) * C`.

`__D`

The output vector `D` in `D = (A + B) * C`.

`__ID`

The distance between the elements in the input vector `D`.

`__N`

The number of elements that the function processes.

## Discussion

This function calculates the element-wise sum of vectors `A` and `B`, multiplies the sum by scalar value `C`, and writes the result to vector `D`.

```swift
 for (n = 0; n < N; ++n)
    D[n] = (A[n] + B[n]) * C;
```

![A diagram showing the operation of this function. There are four rows. The top row represents the input vectors, A and B, with three boxes of each. The second row represents the operation that adds A to B, with three boxes, as well as the input scalar C with one box. The third row represents the multiplication operation as three boxes. The bottom row represents the output vector D as three boxes. The diagram has connecting lines from the input vectors to the operations, and from the operations to the output vector.  ](images/com.apple.accelerate/media-4383309@2x.png)

The following code shows an example of using this function:

```swift
    let stride = 1
    let count = 5
    
    let a: [Float] = [ 1,  2,  3,  4,  5]
    let b: [Float] = [10, 20, 30, 40, 50]
    let c: Float = 5
    
    let d = [Float](unsafeUninitializedCapacity: count) {
        buffer, initializedCount in
        
        vDSP_vasm(a, stride,
                   b, stride,
                   [c],
                   buffer.baseAddress!, stride,
                   vDSP_Length(count))
        
        initializedCount = count
    }
    
    // Prints "[55.0, 110.0, 165.0, 220.0, 275.0]".
    print(d)
```

---

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)