BaseEntryToTerms(Int32, Int32, FractionsType, Boolean) 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
)

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.

Return Value

Term
Array of Term in RPN.

See Also