view default_field.m @ 659:11a39b274260 feature/grids

Make data more flexible, add print method, allow negative devider index
author Jonatan Werpers <jonatan@werpers.com>
date Sat, 11 Nov 2017 13:56:15 -0800
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