1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
+
+
+
-
+
|
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$
## Revision 1.1 1998/07/02 12:36:39 peterg
## Initial revision
##
###############################################################
string_array,new,index
[N,M]=size(string_array);
L = length(new);
if index>N
error(["String array has less than ", num2str(index), " rows"]);
end;
|