Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
Result:-ToMaple - convert a result module into a Maple object
Calling Sequence
result:-ToMaple( opt )
Parameters
result
-
Result module
opt
(optional) equation of the form output=boolean
Description
ToMaple converts result into a Maple representation.
Which type ToMaple converts result into is determined by its optional parameter.
output = table, Array, or browser
For output=table, ToMaple returns the data as a two-dimensional Maple table. The table is indexed first by the row number and second by the column name. In the case that the result contains columns with the same name, the repeated column names will have their column index appended to their name, separated by a space.
For output=Array, ToMaple returns the data as a two-dimensional Array.
For output=browser, a Maplet application starts to display the data.
The default value is output=table.
ToMaple moves only the row cursor toward the last row in the table. Therefore if the row cursor is not on the first (or before first) row, some rows in the result will not be converted. To make sure that all the rows of result are included, position the row cursor at the first row by calling First.
Some care must be taken when calling ToMaple with a Result module containing large elements or a very large number of elements. It may require a large amount of memory to store the data.
Examples
Create a Result.
By default it converts to a table.
Move the cursor to the beginning of the result table.
Now convert to an Array.
This time, move to the third row.
Convert the remainder of the table to an Array.
See Also
Database, Database[DataInterfaceStream], Database[Result], Database[Result][GotoRow], Database[Result][Last], Database[Result][Next], Database[Result][Previous], Database[Result][UpdateData], Database[usage]
Download Help Document