Big Float.Multiply Method
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 and returns the result to the specified accuracy. |
Multiply(BigFloat, BigFloat)
Multiplies two numbers.
public static BigFloat Multiply(
BigFloat left,
BigFloat right
)
Parameters
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(BigFloat, BigFloat, AccuracyGoal, RoundingMode)
Multiplies two numbers and returns the result to the specified accuracy.
public static BigFloat Multiply(
BigFloat left,
BigFloat right,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
Parameters
- left BigFloat
- A BigFloat value.
- right BigFloat
- A BigFloat value.
- accuracyGoal AccuracyGoal
- An AccuracyGoal value that specifies the desired accuracy.
- roundingMode RoundingMode
- A RoundingMode value that specifies how the result should be rounded.
Return Value
BigFloatThe product of left and right.