3 %> @brief Finds an unused variable name in the workspace
10 name_new = sprintf('%s%02d', prefix, i);
11 if length(name_new) > 63
12 irerror(sprintf('Variable name ''%s'' is too big to add suffixes to it! Try renaming first.', prefix));
14 if ~evalin('base', sprintf('exist(''%s'', ''var'')', name_new))
function find_varname(in prefix)