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
CodeTools[Profiling][Allow] - allow procedures and modules marked by Ignore to be profiled
Calling Sequence
Allow(name)
Parameters
name
-
name of a function or module
Description
The Allow(name) command removes the mark on procedures and modules specified by the Ignore command. This allows Profile to collect information about the procedure.
Only procedures and modules that were passed to the Ignore command can be given to the Allow command.
Examples
a := proc() return "a" end proc;
b := proc() return "b" end proc;
Error, (in CodeTools:-Profiling:-PrintProfiles) a is not currently profiled
b b := proc() |Calls Seconds Words| PROC | 1 0.000 0| 1 | 1 0.000 0| return "b" end proc
Error, (in CodeTools:-Profiling:-Profile) a is invalid or an ignored procedure
a a := proc() |Calls Seconds Words| PROC | 1 0.000 0| 1 | 1 0.000 0| return "a" end proc
See Also
CodeTools[Profiling], CodeTools[Profiling][Ignore], CodeTools[Profiling][PrintProfiles], CodeTools[Profiling][Profile], rtable, select
Download Help Document