Mercurial > repos > public > sbplib
view labelTask.m @ 1331:60c875c18de3 feature/D2_boundary_opt
Merge with feature/poroelastic for Elastic schemes
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 10 Mar 2022 16:54:26 +0100 |
parents | 1f5f988e9682 |
children |
line wrap: on
line source
function o = labelTask(in) switch class(in) case 'char' fprintf(in); o = tic(); case 'uint64' o = toc(in); fprintf(' - done %fs\n', o); otherwise error('Unknow input type: %s', class(in)) end