Mercurial > repos > public > sbplib
view labelTask.m @ 1156:8c0e2b50f018 feature/rv
Attempt to fix oscilations when not using bdfs by adding lower-order 2nd derivative correction term to the Residual
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Tue, 25 Jun 2019 13:06:42 +0200 |
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