Big Float.Multiply Operator
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Multiply( | Multiplies two numbers. |
Multiply( | Multiplies two numbers. |
Multiply( | Multiplies two numbers. |
Multiply( | Multiplies a BigFloat value by an integer. |
Multiply(BigFloat, BigFloat) Operator
Multiplies two numbers.
public static BigFloat operator *(
BigFloat left,
BigFloat right
)
Parameters
Return Value
BigFloatThe product of left and right.
Implements
IMultiplyOperators<TSelf, TOther, TResult>.Multiply(TSelf, TOther)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.
public static BigFloat operator *(
BigFloat left,
BigInteger right
)
Parameters
- left BigFloat
- A BigFloat value.
- right BigInteger
- A BigInteger value.
Return Value
BigFloatThe 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.
public static BigFloat operator *(
BigInteger left,
BigFloat right
)
Parameters
- left BigInteger
- A BigInteger value.
- right BigFloat
- A BigFloat value.
Return Value
BigFloatThe 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.
public static BigFloat operator *(
int left,
BigFloat right
)
Parameters
Return Value
BigFloatThe product of left and right.
Remarks
The result has the same relative precision as right.