BigFloat.Multiply(BigFloat, BigFloat, AccuracyGoal, RoundingMode) Method

Multiplies two numbers and returns the result to the specified accuracy.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
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

BigFloat
The product of left and right.

See Also