Mercurial > repos > public > sbplib
view default_field.m @ 1235:48c9a83260c8 feature/dirac_discr
Make all if-branches have the same order of variable assignments
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 19 Nov 2019 23:51:32 +0100 |
parents | d1c13505182a |
children |
line wrap: on
line source
function default_field(s, f, val) if isfield(s,f) && ~isempty(s.(f)) return end s.(f) = val; assignin('caller', inputname(1),s); end