MmaTranslator[FromMma]
convert Mathematica input into equivalent Maple input
convert/FromMma
Calling Sequence
Parameters
Description
Examples
FromMma(Mma_input, options)
convert(Mma_input, FromMma, options)
Mma_input
-
Mathematica input; expressions or operations
options
(optional) keywords evaluate and/or quiet; evaluate translated Mathematica input and/or suppress warning messages
FromMma
literal name; FromMma
The FromMma(Mma_input) calling sequence translates Mathematica input into its Maple input equivalent. This command helps Mathematica users learn Maple.
You can also use the Maplet application interface MmaTranslator[MmaToMaple] to translate Mathematica input and notebooks to Maple input and worksheets.
The FromMma(Mma_input) and convert(Mma_input, FromMma) calling sequences produce the same result.
If you are using the Maple command prompt, the Mathematica input to be translated Mma_input must be enclosed in double quotes (") or left single (`) quotes.
Note: The FromMma(Mma_input) calling sequence does not translate Mathematica programs or Mathematica comments enclosed by (* ... *). Some automatic simplifications, for example, 2+2 -> 4, are also unavoidable.
If you call FromMma(Mma_input) with no options specified, the Mathematica input is translated without performing the intended computation.
To evaluate the translation, specify the optional argument evaluate.
To suppress warning messages, specify the optional argument quiet.
Some Mathematica commands do not have an exact Maple equivalent; however, the translation can still be performed using the MmaTranslator[Mma] subpackage, which contains commands based on the existence of very similar Maple commands. For more information, see MmaTranslator[Mma].
The translation of Mathematica input considers the differences in the definitions of the mathematical functions.
with⁡MmaTranslator
FromMma,FromMmaNotebook,Mma,MmaToMaple
`Exp[x]EllipticPi[a,z,b]`
Exp[x]EllipticPi[a,z,b]
Translate the Mathematica input defined above.
FromMma⁡
ⅇx⁢EllipticPi⁡sin⁡z,a,b
The FromMma( % ) command and the convert(%, FromMma) command are equivalent. They return the same results. Note also that the Mathematica input is translated, but not evaluated.
convert⁡`Integrate[Cos[x],x]`,FromMma
∫cos⁡xⅆx
Produce a full evaluation of the above translation.
sin⁡x
Alternatively, include the evaluate option to evaluate the translation in one step.
convert⁡`Integrate[Cos[x],x]`,FromMma,evaluate
Apart from mathematical expressions, command operations can also be translated.
FromMma⁡`StringLength["spaces count"]`
length⁡spaces count
12
The following are plotting examples.
FromMma⁡Plot3D[ Sin[x]*BesselJ[a,x],{x,0,10},{a,0,10}],evaluate
convert⁡`Show[ContourGraphics[Table[Sin[x y], {x, -5, 5}, {y, -5, 5}], Contours -> 10]]`,FromMma
plotsdisplay⁡plotslistcontplot⁡ListTools:−Transpose⁡seq⁡seq⁡sin⁡x⁢y,y=−5..5,x=−5..5,filled=true,coloring=black,white,contours=10
Generate the plot.
Most Mathematica plotting options have an equivalent Maple option. Consider the following example.
`ListPlot[Transpose[{{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,17, 18, 19}*0.2, {11, 7,4, 2.4, 1.4,0.8, 0.5, 0.301,0.2, 0.1, 0.005, 0.04,0.025, 0.016, 0.0106,0.0069, 0.0053, 0.004,0.0030, 0.0023}}],Prolog -> AbsolutePointSize[5], PlotLabel -> "Voltage Decay of RC circuit",AxesLabel -> {"Time (sec)", "Voltage (Volts)"}]`
ListPlot[Transpose[{{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,17, 18, 19}*0.2, {11, 7,4, 2.4, 1.4,0.8, 0.5, 0.301,0.2, 0.1, 0.005, 0.04,0.025, 0.016, 0.0106,0.0069, 0.0053, 0.004,0.0030, 0.0023}}],Prolog -> AbsolutePointSize[5], PlotLabel -> "Voltage Decay of RC circuit",AxesLabel -> {"Time (sec)", "Voltage (Volts)"}]
plotslistplot⁡convert⁡Matrix⁡0.,0.2,0.4,0.6,0.8,1.0,1.2,1.4,1.6,1.8,2.0,2.2,2.4,2.6,2.8,3.0,3.2,3.4,3.6,3.8,11,7,4,2.4,1.4,0.8,0.5,0.301,0.2,0.1,0.005,0.04,0.025,0.016,0.0106,0.0069,0.0053,0.004,0.0030,0.0023+,listlist,style=POINT,symbol=CIRCLE,symbolsize=15,title=Voltage Decay of RC circuit,labels=Time (sec),Voltage (Volts)
See Also
convert/FromMmaNotebook
MmaTranslator
MmaTranslator/exceptions
MmaTranslator[FromMmaNotebook]
MmaTranslator[Mma]
MmaTranslator[MmaToMaple]
type/string
type/symbol
Download Help Document