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.
假设我有两个 3d 矩阵 A 和 B。A = 49x49x18 B = 49x49x24连接后,我希望将C = 49x49x42视为 A 和 B 在第三维的连接。
A = 49x49x18 B = 49x49x24
C = 49x49x42
我将如何在 matlab 中做到这一点?
使用指定维度 3的cat函数
C = cat(3, A, B)