view labelTask.m @ 684:fcf004066ea9 feature/poroelastic

Add property lim to grid/Cartesian to make periodic discr easier.
author Martin Almquist <malmquist@stanford.edu>
date Thu, 08 Feb 2018 16:40:48 -0800
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