view printExpr.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 54d3ab296ba0
children
line wrap: on
line source

function printExpr(expr)
    result = evalin('caller',expr);
    fprintf('%s => %s\n', expr, toString(result));
end