view show.m @ 1078:532b58a9e849

Bugfix in multiblock.domain.Line method getGrid.
author Martin Almquist <malmquist@stanford.edu>
date Wed, 20 Feb 2019 12:32:49 -0800
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