REcommend ME

Tags

Featured Links

www.axisnepal.com
RetiringbyDesign

How to debug in octave?

To add a breakpoint, use
dbstop(’yourfunctionname’, yourlinenumber)

Example:
dbstop(’dlt_demo’, 303);

To go to next line, type
dbnext

To step into type
dbstep

To continue running, type
dbcont