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で2つの配列をマージしたい
A = [1 2; 3 4] B = [5 6; 7 8] C = [1 5; 3 7; 2 6; 4 8]
:次の演算子を使用します。
:
C = [A(:) B(:)]