dynare/matlab/erase_compiled_function.m

8 lines
225 B
Matlab
Raw Normal View History

function erased_compiled_function(func)
% erase compiled function with name 'func'
if exist([func '.dll'])
delete [func '.dll']
elseif exist ([func '.mexw32'])
delete [func '.mexw32']
end