Worksheet
Convert
parse a worksheet into an XML data structure
Calling Sequence
Parameters
Description
Examples
Convert(worksheet, format=output_format)
worksheet
-
Maple XML data structure; valid Maple worksheet
format=output_format
(optional) equation; output_format can be either "maple8_xml" or "mw" (default)
The Convert command converts a worksheet given as a Maple XML data structure to the specified format. The two output formats supported are maple8_xml and mw. The result is converted to an XML data structure that can be used with the XMLTools package. The XML document structure returned by this procedure is of type Worksheet:-worksheet.
with⁡Worksheet:
dir≔kernelopts⁡mapledir:
doc≔ReadFile⁡cat⁡dir,/examplesclassic/obj.mws,format=maple8_xml:
mws≔Convert⁡doc,format=mw:
See Also
with
Worksheet[ReadFile]
XMLTools
XMLTools[WriteFile]
Download Help Document