view struct2string.m @ 40:54d3ab296ba0

Added Dictionary class. Added string conversions for a bunch of types. Deprecated some replaced functions.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 12 Oct 2015 10:38:53 +0200
parents 2b4f1d3e5630
children 92247f4bad2f
line wrap: on
line source

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

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

    str = sprintf('{');

    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  = value2string(value)
    if isnumeric(value) || ischar(value)
        str = mat2str(value);
    elseif isstruct(value)
        str = struct2string(value);
    else
        str = 'NO_STR_REP';
    end
end