How to replace middle value of matrix 4x4 with the other matrix 2x2?
Show older comments
I have matrix A with size 4x4, and I want to replace the middle value of matrix A(size 2x2) with matrix B, the matrix B have size 2x2. Thanks.
Answers (1)
Wayne King
on 6 Feb 2014
Edited: Wayne King
on 6 Feb 2014
A = randn(4,4);
B = randi([0 1],2,2);
A([6 7 10 11]) = B;
I determined those linear indices using:
sub2ind([4 4],[2 2 3 3],[2 3 2 3])
1 Comment
Andi Tarigan
on 6 Feb 2014
Categories
Find more on Matrices and Arrays in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!