InertForm
ConvertToString
convert an inert-form structure to a string that uses standard math notation
Calling Sequence
Parameters
Description
Package Usage
Examples
Compatibility
ConvertToString( expr )
expr
-
expression
The ConvertToString command accepts an inert-form structure and returns a sprintf or lprint text representation of that string with inert operators replaced with standard operators.
This function is part of the InertForm package, so it can be used in the short form ConvertToString(..) only after executing the command with(InertForm). However, it can always be accessed through the long form of the command by using InertForm[ConvertToString](..).
with⁡InertForm:
ex≔Parse⁡(1+2)/6
ex≔1+26
lprint⁡ex
(1 %+ 2) %/ 6
ConvertToString⁡ex
(1+2)/6
The InertForm[ConvertToString] command was introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
See Also
InertForm:-Parse
Download Help Document