view +util/unique_filename.m @ 846:c6fcee3fcf1b feature/burgers1d

Add generalized RungeKutta and RungeKuttaRV class which extracts its coefficients from a butcher tableau, specified on the scheme.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 20 Sep 2018 17:51:19 +0200
parents 48b6fb693025
children
line wrap: on
line source

% Creates a unique filename on the form base_name.x.suffix where x is some number.
function filename = unique_filename(base_name, suffix)
    filename = strcat(base_name,suffix);
    i = 1;
    while exist(filename)
        filename = strcat(base_name,'.',num2str(i),suffix);
        i = i+1;
    end
end