view checkAllCode.m @ 828:f82da6644f42 feature/operator_files

Fixed bug in tests
author Ylva Rydin <ylva.rydin@telia.com>
date Mon, 10 Sep 2018 19:17:41 +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