fma(_:_:_:)
Returns the multiply-add result for corresponding elements in three vectors.
Declaration
func fma(_ x: simd_double8, _ y: simd_double8, _ z: simd_double8) -> simd_double8Parameters
- 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.