Clear Filters
Clear Filters

Mix two different size arrays

3 views (last 30 days)
tori lansing
tori lansing on 19 Sep 2023
Commented: tori lansing on 20 Sep 2023
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.

Accepted Answer

Stephen23
Stephen23 on 19 Sep 2023
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 Comments
Stephen23
Stephen23 on 20 Sep 2023
"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
tori lansing
tori lansing on 20 Sep 2023
That helps a lot, thank you!

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products


Release

R2023a

Community Treasure Hunt

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

Start Hunting!