view default_field.m @ 595:2a2f34778ded feature/utux2D

Make Utux2D work
author Martin Almquist <malmquist@stanford.edu>
date Tue, 26 Sep 2017 13:26:25 -0700
parents 14bf01b7a068
children 50cafc4b9e40
line wrap: on
line source

function default_field(s, f, val)
    if isfield(s,f)
        return
    end
    s.(f) = val;
    assignin('caller', inputname(1),s);
end