Replacing values in array with values from another array

4 ビュー (過去 30 日間)
L'O.G.
L'O.G. 2022 年 7 月 17 日
コメント済み: Star Strider 2022 年 7 月 17 日
The values in each row of an array correspond to the values i, j of an upper triangular array. How do I return a vector with elements that are the corresponding i, j value in the array? For example:
test_array = [1 2; 2 3; 1 3];
test_upper_triangular_array = [0.5 0.25 0.7; 0 0.8 0.6; 0 0 1.1];
desired_vector = [0.25 0.6 0.7]

採用された回答

Star Strider
Star Strider 2022 年 7 月 17 日
編集済み: Star Strider 2022 年 7 月 17 日
Try this —
test_array = [1 2; 2 3; 1 3];
test_upper_triangular_array = [0.5 0.25 0.7; 0 0.8 0.6; 0 0 1.1]
test_upper_triangular_array = 3×3
0.5000 0.2500 0.7000 0 0.8000 0.6000 0 0 1.1000
lidx = sub2ind(size(test_upper_triangular_array), test_array(:,1), test_array(:,2)) % Convert Subscripts To Linear Indices
lidx = 3×1
4 8 7
result = test_upper_triangular_array(lidx)
result = 3×1
0.2500 0.6000 0.7000
% desired_vector = [0.25 0.6 0.7]
EDIT —
Transpose to get row vector:
result_row = result.'
result_row = 1×3
0.2500 0.6000 0.7000
.
  3 件のコメント
L'O.G.
L'O.G. 2022 年 7 月 17 日
@Star Strider Thank you!
Star Strider
Star Strider 2022 年 7 月 17 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by