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.
我需要构建一个如图所示的图表,只需要在其他图表的不同级别显示。我找到了这个:
m = 10; n = 25; d = 4; S = rand([m,n,d]); slice(S, [], [], 1:size(S,3));
我们可以改为 S 传输另一个图,例如contour(),以获得不同级别的不同图形,如上所示?如果是这样,怎么办?
contour()
从您自己的链接推断:
m = 10; n = 25; d = 4; S = rand([m,n,d]); contourslice(S, [], [], 1:size(S,3),10); view(3);