view struct2syntax.m @ 103:bc5db54f9efd feature/arclen-param

fzero_vec, integral_vec and spline are now local functions in Curve. Renamed arcLengthStretch to arcLengthParametrization. Removed plot_derivative. Added some comments and extra lines + removed unneccesary lines. arcLength is now a method and not static. Constructor does not accept difference operator anymore.
author Martin Almquist <martin.almquist@it.uu.se>
date Mon, 07 Dec 2015 17:24:28 +0100
parents 54d3ab296ba0
children
line wrap: on
line source

function str = struct2syntax(s)
    warning('Deprecated! Use toString() instead!');
    fn = fieldnames(s);

    if length(fn) == 0
        str = 'struct()';
        return
    end

    str = sprintf('struct(');

    for i = 1:length(fn) - 1
        value = s.(fn{i});
        str = [str sprintf('''%s'', %s, ',fn{i}, valueString(value))];
    end
    value = s.(fn{end});
    str = [str sprintf('''%s'', %s)',fn{end}, valueString(value))];
end

function str  = valueString(value)
    if ischar(value)
        str = ['''' value ''''];
    else
        str = num2str(value);
    end
end