Mercurial > repos > public > sbplib
view +util/unique_filename.m @ 966:4a85cff53107 feature/poroelastic
Fix bug in Elastic2dVariable that caused crash for m_x neq m_y
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sat, 22 Dec 2018 18:08:51 +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