提问人:Kabo 提问时间:9/12/2023 更新时间:9/12/2023 访问量:5
如何切片 3D 而不出现串联错误?
How can I slice a 3D and not get a concatenated error?
问:
我正在尝试切片下面的 3D,但我收到“使用 horzcat 时出错 要连接的数组的维度不一致。 《无题》中的错误(第 99 行) 切片(X,Y,Z,[F1,V1],xslice,yslice,zslice)''
[F1,V1] = isosurface(X,Y,Z,structure,0.005);
%Slice the topology to view the grading/hybridization at unit cell level
xslice = [0.5,1.5,2.5];
yslice = [0.5];
zslice = [0.5];
slice(X,Y,Z,[F1,V1],xslice,yslice,zslice)
不同的试验和错误。
答: 暂无答案
评论