annotate +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 |
|
rev |
line source |
0
|
1 % Creates a unique filename on the form base_name.x.suffix where x is some number.
|
|
2 function filename = unique_filename(base_name, suffix)
|
|
3 filename = strcat(base_name,suffix);
|
|
4 i = 1;
|
|
5 while exist(filename)
|
|
6 filename = strcat(base_name,'.',num2str(i),suffix);
|
|
7 i = i+1;
|
|
8 end
|
|
9 end
|