view checkAllCode.m @ 1055:b828e589d540 feature/poroelastic

Copy-paste LaplCurviNewCorner from laplace branch.
author Martin Almquist <malmquist@stanford.edu>
date Fri, 25 Jan 2019 14:04:23 -0800
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