Operations<T>.MultiplySum Method

Multiplies a number and the sum of two other numbers.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
public static T MultiplySum(
	T a,
	T b,
	T c
)

Parameters

a  T
The first factor in the product.
b  T
The first term in the sum.
c  T
The second term in the sum.

Return Value

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

See Also