Contents

simd_muladd(_:_:_:)

Returns the multiply-add result for corresponding elements in three vectors.

Declaration

func simd_muladd(_ x: simd_float2, _ y: simd_float2, _ z: simd_float2) -> simd_float2

Parameters

  • x:

    The x in x*y + z.

  • y:

    The y in x*y + z.

  • z:

    The z in x*y + z.

Return Value

The result of x*y + z.

See Also

Math Functions