Mercurial > repos > public > sbplib
view +util/unique_filename.m @ 348:145b3b8c1e4e martin-thesis-plots
Played around with Ti show and plot settings to create pretty pics for thesis.
author | Martin Almquist <martin.almquist@it.uu.se> |
---|---|
date | Sat, 03 Dec 2016 23:00:44 +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