view +util/unique_filename.m @ 1022:234c1c02ea39 feature/advectionRV

Add dirichlet bc for north and south boundary and handle cases where the wave speed changes in sign.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Mon, 07 Jan 2019 12:06:06 +0100
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