Multiplies two numbers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat Multiply(
BigFloat left,
BigFloat right
)
Public Shared Function Multiply (
left As BigFloat,
right As BigFloat
) As BigFloat
public:
static BigFloat^ Multiply(
BigFloat^ left,
BigFloat^ right
)
static member Multiply :
left : BigFloat *
right : BigFloat -> BigFloat
Parameters
- left
- Type: Extreme.MathematicsBigFloat
A BigFloat value. - right
- Type: Extreme.MathematicsBigFloat
A BigFloat value.
Return Value
Type:
BigFloatThe product of
left and
right.
The result has the same relative precision as the smaller of the relative precisions of left
and right.
Reference