matlab 将二维数组输入三维数组

2024-11-25 08:51:14
推荐回答(1个)
回答1:

total=rand(10,10,10);
temp=rand(10,10);
total(1,:,:)=temp
不过一般是这样的,比较好理解
total(:,:,1)=temp