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.
A は 3x3x3 の多次元ベクトルです。9x3 ベクトルに変更したい。matlabでこれを行うにはどうすればよいですか?
reshape関数を使用してそれを行うことができます。
B = reshape(A,9,3);