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
stoplast - set a breakpoint in the procedure that most recently raised an exception
Calling Sequence
stoplast(statNum)
Parameters
statNum
-
(optional) statement number at which to stop in the procedure
Description
The stoplast function sets a breakpoint in the procedure that most recently raised an exception in the active Maple session. The next time that procedure is invoked, the debugger is activated (see stopat).
The stoplast function accepts one optional integer argument. If statNum is specified, stoplast stops at the specified statement in the procedure instead of at the beginning of the procedure. This argument is equivalent to the statNum argument to the stopat() function. For more information, see stopat.
Examples
Note: These examples illustrate the use of these debugger commands in Maple's command-line interface. In the standard (graphical) interface, the debugger runs in its own window, with controls for most of the common commands. See Interactive Maple Debugger for details.
foo := proc() error "test"; end proc;
Error, (in foo) test
foo:
1* error "test"
DBG> cont
See Also
Interactive Maple Debugger, stopat, stoperror, stopwhen, stopwhenif
Download Help Document