I need some help in converting a 2X2 matrix to a 4X4 matrix in the following manner:
A = [2 6;
8 4]
should become:
B = [2 2 6 6;
2 2 6 6;
8 8 4 4;
8 8 4 4]
How would I do this?
|
|
|||
|
|
|
|
||||||||||
|
|
|
There is a Reshape() function that allows you to do this... For example:
And you can find a great video tutorial here Cheers |
||||||||
|
|
|
This works:
This is just two-dimensional nearest-neighbor interpolation of A(x,y) from x,y ∈ {1,2} to x,y ∈ {0.5, 1, 1.5, 2}. Edit: Springboarding off of Jason S and Martijn's solutions, I think this is probably the shortest and clearest solution:
|
|||
|
|
Can be done even easier than Jason's solution:
|
|||
|
|
Here's one more solution:
which uses indexing to do everything and doesn't rely on the size or shape of A. |
||||||||
|
|
|
Here's an even shorter solution which uses the MATLAB functions KRON and ONES:
|
||||
|