Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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