Creating a new matrix and insert certain values into that matrix

12 ビュー (過去 30 日間)
eko supriyadi
eko supriyadi 2021 年 8 月 30 日
コメント済み: eko supriyadi 2021 年 9 月 2 日
Dear Matlab community
suppose i want make new matrix 4*4 and insert a value based on the row-column position of the matrix, and also if there is no value it is filled with nan.. any ideas to solve it?
the value where i want to insert are:
A(1,1) = 2
A(3,1) = 2
A(3,1) = 2
A(2,3) = 4
A(2,4) = 2
A(3,1) = 3
A(3,2) = 3
A(4,1) = 2
A(3,4) = 1
and give the result:
A =
2 NaN 3 2
NaN NaN 3 NaN
2 4 NaN 1
4 2 NaN NaN
  1 件のコメント
Stephen23
Stephen23 2021 年 8 月 30 日
編集済み: Stephen23 2021 年 8 月 30 日
Note that the indexing and values you show will NOT generate that "result" matrix.
As far as I can tell, half of the values in your results matrix are randomly placed.

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

採用された回答

Stephen23
Stephen23 2021 年 8 月 30 日
I suspect that you are asking about SUB2IND:
R = [1,3,3,2,2,3,3,4,3];
C = [1,1,1,3,4,1,2,1,4];
V = [2,2,2,4,2,3,3,2,1];
M = nan(4,4);
M(sub2ind(size(M),R,C)) = V
M = 4×4
2 NaN NaN NaN NaN NaN 4 2 3 3 NaN 1 2 NaN NaN NaN

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by