MATLAB: Where can I get information on the symbols ‘_alpha’ or ‘_Z ‘ in some of the expressions I get from the MAPLE function in the Extended Symbolic Toolbox 3.2.2 (R2007b)

_alpha_zextendedmhelpsymbolicSymbolic Math Toolboxtoolbox

The output from a MAPLE command might contain symbols that are not in MATLAB documentation such as' _alpha' or '_Z'. I am trying to find some information about them.

Best Answer

Symbols such as '_alpha' and '_Z' are intermediate expressions that appear in the output from Maple called in the MAPLE command. For instance, Maple uses variables of the form _Z to represent arbitrary integers.
These intermediate expressions can be evaluated even further by using the following command:
maple('_EnvAllSolutions:=true')
You will need the Extended Symbolic Math Toolbox to execute the above command. For more information on these variables, you can use Maple Help by using the command MHELP. The Student Version does not include the Extended Symbolic Math Toolbox.