フィルターのクリア

How to replace middle value of matrix 4x4 with the other matrix 2x2?

3 ビュー (過去 30 日間)
Andi Tarigan
Andi Tarigan 2014 年 2 月 6 日
コメント済み: Andi Tarigan 2014 年 2 月 6 日
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.

回答 (1 件)

Wayne King
Wayne King 2014 年 2 月 6 日
編集済み: Wayne King 2014 年 2 月 6 日
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 件のコメント
Andi Tarigan
Andi Tarigan 2014 年 2 月 6 日
Thanks. And what if I have a matrix A (4x4) with a size of (1x64 cell), and the matrix B (2x2) with size of (1x64 cell)? And I want to replace all of the matrix A.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by