Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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