view default_arg.m @ 1215:c7c2cbb465df feature/joingrids

Close branch feature/joingrids
author Martin Almquist <malmquist@stanford.edu>
date Wed, 13 Nov 2019 22:13:20 +0000
parents 48b6fb693025
children
line wrap: on
line source

function default_arg(s, val)
    if evalin('caller',sprintf('~exist(''%s'',''var'') || isempty(%s)',s,s))
        assignin('caller',s,val)
    end
end