BigFloat.Multiply(BigInteger, BigFloat) Operator

Multiplies two numbers.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigFloat operator *(
	BigInteger left,
	BigFloat right
)

Parameters

left  BigInteger
A BigInteger value.
right  BigFloat
A BigFloat value.

Return Value

BigFloat
The product of left and right.

Remarks

The result has the same relative precision as the smaller of the relative precisions of left and right.

See Also