view checkAllCode.m @ 1053:6f8d2fd0d412 feature/getBoundaryOp

Close branch feature/getBoundaryOp
author Jonatan Werpers <jonatan.werpers@it.uu.se>
date Thu, 24 Jan 2019 08:29:50 +0000
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