Man Scilab

delbpt
Scilab Function

delbpt - delete breakpoint

Calling Sequence

delbpt('macroname' [,linenumb])

Description

deletes the breakpoint at line linenumb in the function macroname . If linenumb is omitted all the breakpoints in the function are deleted.

Examples


setbpt('foo',1),setbpt('foo',10),delbpt('foo',10),dispbpt()
delbpt('foo',1)
 
  

See Also

setbpt ,   dispbpt ,   pause ,   resume ,  

Back