view default_field.m @ 164:772365e2cf96 feature/grids

Correct method signatures in Grid.m
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 22 Feb 2016 15:56:33 +0100
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