Robochameleon  v1.0
clearall.m
Go to the documentation of this file.
1 %# store breakpoints
2 tmp = dbstatus;
3 save('tmp.mat','tmp')
4 
5 %# clear all
6 clear classes %# clears even more than clear all
7 
8 %# reload breakpoints
9 load('tmp.mat')
10 dbstop(tmp)
11 
12 %# clean up
13 clear tmp
14 delete('tmp.mat')