BigFloat.Multiply Operator

DefinitionPermalink

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0

Overload ListPermalink

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) OperatorPermalink

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.

Implements

IMultiplyOperators<TSelf, TOther, TResult>.Multiply(TSelf, TOther)

RemarksPermalink

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

Multiply(BigFloat, BigInteger) OperatorPermalink

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.

RemarksPermalink

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

Multiply(BigInteger, BigFloat) OperatorPermalink

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.

RemarksPermalink

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

Multiply(Int32, BigFloat) OperatorPermalink

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.

RemarksPermalink

The result has the same relative precision as right.

See AlsoPermalink