Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想像这样在Matlab中合并两个数组
A = [1 2; 3 4] B = [5 6; 7 8] C = [1 5; 3 7; 2 6; 4 8]
使用:运算符:
:
C = [A(:) B(:)]