view checkAllCode.m @ 776:23ad69a347dd feature/grids

Remove multiplication with jacobian where it shouldn't be
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 23 Jul 2018 09:32:56 -0700
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