prog::traced
-- find traced
functionsprog::traced(
)
lists all traced
functions.
prog::traced( <obj>)
obj |
- | a MuPAD function, a function environment or a library |
prog::traced
returns the void object null()
.
prog::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.
The function sin
is traced:
>> prog::trace(sin): prog::traced(sin)
A backup of object 'sin' exists. Object 'sin' seems to be traced.