function string_array = replace_name(string_array, new, index); % Replaces a row of a string vector with a string of arbitary length. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### [N,M]=size(string_array); L = length(new); if index>N error(["String array has less than ", num2str(index), " rows"]); end; if L