annotate checkAllCode.m @ 1347:ac54767ae1fb feature/poroelastic tip

Add interface, not fully compatible.
author Martin Almquist <martin.almquist@it.uu.se>
date Tue, 30 Apr 2024 14:58:35 +0200
parents cd571e8ec1fd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
455
cd571e8ec1fd Add function to run checkcode on all matlab files
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
1 % Run matlabs checkcode on all files in current folder including subfolders
cd571e8ec1fd Add function to run checkcode on all matlab files
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
2 function checkAllCode(d)
cd571e8ec1fd Add function to run checkcode on all matlab files
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
3 default_arg('d','')
cd571e8ec1fd Add function to run checkcode on all matlab files
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
4 files = findMfiles(d);
cd571e8ec1fd Add function to run checkcode on all matlab files
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
5 checkcode(files)
cd571e8ec1fd Add function to run checkcode on all matlab files
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
6 end