view checkAllCode.m @ 611:5a7f7f206594 feature/grids

Remove diffSymfun, matlab already does this
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 09 Oct 2017 10:51:48 +0200
parents cd571e8ec1fd
children
line wrap: on
line source

% Run matlabs checkcode on all files in current folder including subfolders
function checkAllCode(d)
    default_arg('d','')
    files = findMfiles(d);
    checkcode(files)
end