Matlab matrix merging (urgent) For example, a = [A1; A2], B = [B1; B2] Merge into C = [A1; A2; B1; B2] Where a1, A2, B1 and B2 are all column vectors We should change ";" to ","

Matlab matrix merging (urgent) For example, a = [A1; A2], B = [B1; B2] Merge into C = [A1; A2; B1; B2] Where a1, A2, B1 and B2 are all column vectors We should change ";" to ","


If you say: "a = [A1, A2], B = [B1, B2] merge into C = [A1, A2, B1, B2] where a1, A2, B1, B2 are column vectors", then just input the following in Matlab: C = [a, b] and if you say: "a = [A1, A2], B = [B1, B2] merge into C = [A1, A2; B1, B2] where a1, A2



How to merge matrix in MATLAB?
For example: a = [0.42 0.41 0.67 0.78 0.69 0.32] B = [0.57 0.27 0.55 0.29 0.37] C = [0.36 0.48 0.48 0.35] d = [0.80 0.80 0.41] e = [0.64 0.28] f = 0.51
How to put it into a matrix?


>>A (2,:) = [0, b]% a's second line put 0, Ba = 0.4200.4100.6700 0.7800.6900.3200.5700.2700.55000.2900.3700 > > A (3,:) = 0% third line set 0A = 0.4200



The eigenvalue of a = [0 6 - 5 / 10 2 / 3 24] is 1 12. Try to transform a into Jordan matrix,
And when the eigenvalue of a = [0 10 / 0 01 / 2 30] has multiple roots - 1 - 1 2
After all, this is a big problem