view +mpm/load_state.m @ 17:c37f67ccabac

Copy implementations into the MPM class
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 17 Sep 2018 14:39:00 +0200
parents 2007c2cd566a
children
line wrap: on
line source

function s = load_state()
    try
        s = load(fullfile(mpm.install_location(), 'state'));
    catch
        s = struct();
    end
end