From: Fernando Yuji Ono on 6 Jul 2010 08:40 Suppose the following: A = [1 1 1; 2 2 2; 3 3 3] B = [4 4 4; 5 5 5; 6 6 6] Is there a function that does this: C = [1 1 1; 2 2 2; 3 3 3; 4 4 4; 5 5 5; 6 6 6] Or do I have to create a routine to do it?
From: Andy on 6 Jul 2010 13:05 Fernando Yuji Ono <fernando90ono(a)gmail.com> wrote in message <885382824.78355.1278434442532.JavaMail.root(a)gallium.mathforum.org>... > Suppose the following: > > A = [1 1 1; 2 2 2; 3 3 3] > B = [4 4 4; 5 5 5; 6 6 6] > > Is there a function that does this: > > C = [1 1 1; 2 2 2; 3 3 3; 4 4 4; 5 5 5; 6 6 6] > > Or do I have to create a routine to do it? C = [A;B]; You should probably read the Getting Started section.
|
Pages: 1 Prev: no of element in row Next: Getting Top 'k' most negative value indices in matrix |