Multiplies two numbers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat operator *(
BigInteger left,
BigFloat right
)
Public Shared Operator * (
left As BigInteger,
right As BigFloat
) As BigFloat
public:
static BigFloat^ operator *(
BigInteger left,
BigFloat^ right
)
static let inline (*)
left : BigInteger *
right : BigFloat : BigFloat
Parameters
- left
- Type: Extreme.MathematicsBigInteger
A BigInteger 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