ComplexTAddProduct Method
Returns the sum of the object and the product of b and c.
Namespace: Metas.UncLib.CoreAssembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 3.0.9684.25141
public Complex<T> AddProduct(
Complex<T> b,
Complex<T> c
)
Public Function AddProduct (
b As Complex(Of T),
c As Complex(Of T)
) As Complex(Of T)
public:
virtual Complex<T> AddProduct(
Complex<T> b,
Complex<T> c
) sealed
abstract AddProduct :
b : Complex<'T> *
c : Complex<'T> -> Complex<'T>
override AddProduct :
b : Complex<'T> *
c : Complex<'T> -> Complex<'T>
- b ComplexT
- The second operand
- c ComplexT
- The third operand
ComplexTthe sum a + b * c
IElementArithmeticTAddProduct(T, T)