Returns a vector containing the results of performing a fused multiply/add for each corresponding set of elements of the given vectors.
d=vec_madd(a, b, c)
The following table describes the types of the returned value and the function arguments.
| d | a | b | c |
|---|---|---|---|
| vector float | vector float | vector float | vector float |
| vector double | vector double | vector double | vector double |
The value of each element of the result is the product of the values of the corresponding elements of a and b, added to the value of the corresponding element of c.