Mix two different size arrays

3 次查看(过去 30 天)
How do i mix two different size arrays i.e A=[a1 a2 a3...a12] and B=[b1 b2 b3...b9] so that the resulting one is C={a1 b1 a2 b2 a3 b3...] and the longer vector is the ones whos values continue when the shorter one is exhausted of values. I also need to do this using horizontal concatenation, horzcat, reshape, lengths, zeros and ones matricies and other commands.

采纳的回答

Stephen23
Stephen23 2023-9-19
A = rand(1,3)
A = 1×3
0.7096 0.8827 0.4324
B = rand(1,7)
B = 1×7
0.4981 0.1477 0.8535 0.7647 0.1932 0.2252 0.5484
N = min(numel(A),numel(B));
C = [reshape([A(1:N);B(1:N)],1,[]),A(N+1:end),B(N+1:end)]
C = 1×10
0.7096 0.4981 0.8827 0.1477 0.4324 0.8535 0.7647 0.1932 0.2252 0.5484
  5 个评论
Stephen23
Stephen23 2023-9-20
"I want to be able to understand the different parts of the code."
It is often useful to "break" down code when debugging or trying to understand code:
A = rand(1,3) % fake data (row vector)
A = 1×3
0.7642 0.3381 0.8769
B = rand(1,7) % fake data (row vector)
B = 1×7
0.4824 0.7981 0.5552 0.6184 0.0284 0.1195 0.3547
N = min(numel(A),numel(B)) % N = shortest vector length
N = 3
M = [A(1:N);B(1:N)] % 2xN matrix
M = 2×3
0.7642 0.3381 0.8769 0.4824 0.7981 0.5552
R = reshape(M,1,[]) % 1x(2*N) vector... but note the order!
R = 1×6
0.7642 0.4824 0.3381 0.7981 0.8769 0.5552
X = A(N+1:end) % remaining elements
X = 1×0 empty double row vector
Y = B(N+1:end) % remaining elements
Y = 1×4
0.6184 0.0284 0.1195 0.3547
C = [R,X,Y] % join them all together
C = 1×10
0.7642 0.4824 0.3381 0.7981 0.8769 0.5552 0.6184 0.0284 0.1195 0.3547

请先登录,再进行评论。

更多回答(0 个)

类别

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

标签

产品


版本

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by