view +util/unique_filename.m @ 1118:07d0caf915e4 feature/poroelastic

Introduce optFlag so that one can choose not to build the optimization-related cell of matrices called B. It is too computationally costly and should probably be done in a different way.
author Martin Almquist <malmquist@stanford.edu>
date Sun, 05 May 2019 19:05:31 -0700
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