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.
Namespace: SMath.Math.NumericAssembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.67.9018.0
[ObsoleteAttribute("Use method with 1 argument.")]
public virtual Term[] ToTerms(
int decimalPlaces,
int exponentialThreshold,
FractionsType fractionType,
bool trailingZeros,
bool significantDigits,
MidpointRounding rounding
)
<ObsoleteAttribute("Use method with 1 argument.")>
Public Overridable Function ToTerms (
decimalPlaces As Integer,
exponentialThreshold As Integer,
fractionType As FractionsType,
trailingZeros As Boolean,
significantDigits As Boolean,
rounding As MidpointRounding
) As Term()
public:
[ObsoleteAttribute(L"Use method with 1 argument.")]
virtual array<Term^>^ ToTerms(
int decimalPlaces,
int exponentialThreshold,
FractionsType fractionType,
bool trailingZeros,
bool significantDigits,
MidpointRounding rounding
)
[<ObsoleteAttribute("Use method with 1 argument.")>]
abstract ToTerms :
decimalPlaces : int *
exponentialThreshold : int *
fractionType : FractionsType *
trailingZeros : bool *
significantDigits : bool *
rounding : MidpointRounding -> Term[]
[<ObsoleteAttribute("Use method with 1 argument.")>]
override ToTerms :
decimalPlaces : int *
exponentialThreshold : int *
fractionType : FractionsType *
trailingZeros : bool *
significantDigits : bool *
rounding : MidpointRounding -> Term[]
- 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.
Term
Array of Term in RPN.