view default_field.m @ 751:005a8d071da3 feature/interpolation

Replace AWW interpolation operator coefficients by new that were generated symbolically
author Martin Almquist <malmquist@stanford.edu>
date Tue, 22 May 2018 13:29:47 -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