view show.m @ 1288:e059a43bb675 feature/boundary_optimized_grids

Error-check format of limit arguments
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Wed, 01 Jul 2020 15:13:36 +0200
parents 360280a55ae8
children
line wrap: on
line source

function show(str)
    assertType(str, {'string', 'char'})
    val = evalin('caller',str);
    fprintf('%s => %s\n\n', str, toString(val));
end