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ワークスペースでM(1、:、:)、M(2、:、:)などを表示できるようにしたい。しかし、これはM(:、:、1)..のみを示しています。
次のコマンドを使用して、行列の次元をシフトしてみることができます。
permute(val, [3 1 2])
これにより、基本的にマトリックスが回転し、3次元が1次元、1次元が2次元、2次元が3次元になります。