BaseEntryToTerms(Int32, Int32, FractionsType, Boolean, Boolean, MidpointRounding) Method

Note: This API is now obsolete.
Converts current expression component to the array of Term in reverse polish notation (RPN) with options.

Definition

Namespace: SMath.Math.Numeric
Assembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.67.9018.0
C#
[ObsoleteAttribute("Use method with 1 argument.")]
public virtual Term[] ToTerms(
	int decimalPlaces,
	int exponentialThreshold,
	FractionsType fractionType,
	bool trailingZeros,
	bool significantDigits,
	MidpointRounding rounding
)

Parameters

decimalPlaces  Int32
Decimal places of the result value.
exponentialThreshold  Int32
Exponential threshold of the result value.
fractionType  FractionsType
Fraction type of the result value.
trailingZeros  Boolean
Sets if the answer should be displayed with trailing zeros or not.
significantDigits  Boolean
Whether answer should be displayed in significant digits mode.
rounding  MidpointRounding
Mathematical rounding method to process a number that is midway.

Return Value

Term
Array of Term in RPN.

See Also