view default_field.m @ 1088:acf19ecd1338 feature/dataspline

Turn the helper function spline into a static method in the Curve class.
author Martin Almquist <malmquist@stanford.edu>
date Thu, 04 Apr 2019 17:55:57 -0700
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