Tutorial on sequences
untested code
for i =3D 1 to 4 do
seq1[i] =3D seq1[i] & seq2[i]
end for
--Alan
---------------------------------------------------------------
Visit my web page, including the Question of the Week poll, at:
http://ourworld.compuserve.com/homepages/atu5713/
>>>>>
I like to add a sequence (append) to another sequence.
For example :
given :
seq1 =3D {{1,2,3,4},{5,6,7,8},{9,10,11,12}}
seq2 =3D {20,30,40}
result should be:
seq1 =3D {{1,2,3,4,20},{5,6,7,8,30},{9,10,11,12,40}}
<<<<<
=
|
Not Categorized, Please Help
|
|