Operations<T>.Add Product Method
Adds a number and the product of two other numbers.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
The sum of a, and the product of b and c.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public static T AddProduct(
T a,
T b,
T c
)
Parameters
- a T
- The first term in the sum.
- b T
- The first factor in the product.
- c T
- The second factor in the product.
Return Value
TThe sum of a, and the product of b and c.