Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
Drexel University or The Math Forum.
|
|
Matt J
Posts:
4,979
Registered:
11/28/09
|
|
Re: creating a larger matrix from a smaller matrix
Posted:
Jan 22, 2013 6:52 PM
|
|
"Matt J" wrote in message <kdn72u$9on$1@newscl01ah.mathworks.com>... > "Erick " <erickleiss@navmar.com> wrote in message <kdn2pu$noq$1@newscl01ah.mathworks.com>... > > Hello, > > > > I have a 10x1 matrix with a bunch of values in each row. I would like to create a 40x1 matrix using the values in each row of the 10x1 matrix. I would like the first value in the 10x1 matrix to be copied 4 times into the second 40x1 matrix and then go to the second cell in the 10x1 matrix and copy that value 4 times in the 40x1 matrix and so on until this has been done for all values in the 10x1 matrix. Please let me know if there is a way to do this. Thank you > ================== > > A_40x1 = kron(ones(4,1),A_10x1);
or
A_40x1 = kron( A_10x1 , ones(4,1) );
Hard to tell from your description.
|
|
|
|