prog::traced -- find traced
functions
Introductionprog::traced() lists all traced
functions.
Call(s)prog::traced( <obj>)
Parametersobj |
- | a MuPAD function, a function environment or a library |
Returnsprog::traced returns the void object null().
Related
Functions
Detailsprog::traced(obj) detects, whether the
function obj is traced. If obj is a library
or a function enviroment, then all methods will be checked. If no
argument is given, all traced functions
will be displayed.prog::traced determines whether a copy exists and
whether the function has been manipulated the way prog::trace does.A backup of object 'obj' exists means, a backup of the
original object obj exists to restore obj
with prog::untrace.
Object 'obj' seems to be traced says, the object
obj was analyzed and some points suggests this matter.
Example
1The function sin is traced:
>> prog::trace(sin): prog::traced(sin)
A backup of object 'sin' exists.
Object 'sin' seems to be traced.