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
CodeTools[Profiling][GetProfileTable] - get the raw profiling data associated with a procedure
Calling Sequence
GetProfileTable(p, opts)
Parameters
p
-
procedure whose profiling data is to be returned
opts
equation(s) of the form output=value where value is one of default or table; specify the type of output
Description
The GetProfileTable(p) command returns the rtable of profiling data associated with the procedure p.
You may not need to access the profiling data at this level. It is usually more useful to use the table of data returned by a call to Build.
The format of the profiling data is as follows:
If p has n statements, the data is an rtable of n+1 rows and 3 columns. The first column is the count of the number of calls, the second is the time spent executing the statement (in milliseconds), and the third is the number of words allocated while executing the statement. The first row of the rtable is the total calls, time spent, and words used for the entire function. The rtable has datatype integer[4] and has order C_order.
If you specify the output = table option, GetProfileTable returns the rtable within a table. This table is compatible with the tables used by other Profiling functions, for example, Merge and PrintProfiles.
It is possible for a procedure name to be assigned a new procedure after the rtable of profiling data has been obtained. If this occurs, the rtable is no longer valid profiling data for that name. However, if other names exist that reference the procedure, then the rtable may still be useful.
Examples
a := proc(x) if (x > 1) then return 1; else return 0; end if; end proc:
See Also
CodeTools[Profiling], CodeTools[Profiling][Build], CodeTools[Profiling][Merge], CodeTools[Profiling][PrintProfiles], CodeTools[Profiling][Profile], rtable
Download Help Document