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 で行列の行をベクトルに連結するにはどうすればよいですか?
MxN 行列を列に変換するにはどうすればよいですか。つまり、使用する代わりに何か
B = A ( : )
?
何を試しましたか?
B = reshape(A, [], 1);