Mapping a smaller matrix to a larger matrix

14 次查看(过去 30 天)
I have a 4x4 matrix with indicies indicated around it (k). I want to map it to an 8x8 matrix based on thoes indicies to give me k'. See the image below for clarification. Is there a way to do it such that the indecies on the 4x4 matric and be any value from 1-8. For instance instead of 7812, use 4312 or 4378.
  2 个评论
Dyuman Joshi
Dyuman Joshi 2023-2-23
How are the indices given to you? Or how are these indices provided to the code as input?
Jan
Jan 2023-2-23
A smarter example than only 1
K = [1,2,3,4; 5,6,7,8; 9,10,11,12; 13,14,15,16];
index1 = [7,8,1,2];
index2 = [7,8,1,2];

请先登录,再进行评论。

采纳的回答

Cameron
Cameron 2023-2-23
编辑:Cameron 2023-2-23
k = ones(4);
kprime = zeros(8);
krow = [7 8 1 2];
kcol = [7; 8; 1; 2];
kprime(krow,kcol) = k;
Not sure where the k'(5,1) value came from or if you accidentally put a 1 there.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

标签

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by