Operations<T>.AddProduct 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#
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

T
The sum of a, and the product of b and c.

See Also