BigFloat.Multiply Operator

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Multiply(BigFloat, BigFloat) Multiplies two numbers.
Multiply(BigFloat, BigInteger) Multiplies two numbers.
Multiply(BigInteger, BigFloat) Multiplies two numbers.
Multiply(Int32, BigFloat) Multiplies a BigFloat value by an integer.

Multiply(BigFloat, BigFloat) Operator

Multiplies two numbers.
C#
public static BigFloat operator *(
	BigFloat left,
	BigFloat right
)

Parameters

left  BigFloat
A BigFloat 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.

Multiply(BigFloat, BigInteger) Operator

Multiplies two numbers.
C#
public static BigFloat operator *(
	BigFloat left,
	BigInteger right
)

Parameters

left  BigFloat
A BigFloat value.
right  BigInteger
A BigInteger 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.

Multiply(BigInteger, BigFloat) Operator

Multiplies two numbers.
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.

Multiply(Int32, BigFloat) Operator

Multiplies a BigFloat value by an integer.
C#
public static BigFloat operator *(
	int left,
	BigFloat right
)

Parameters

left  Int32
An integer.
right  BigFloat
A BigFloat value.

Return Value

BigFloat
The product of left and right.

Remarks

The result has the same relative precision as right.

See Also