Plotting 2d contour plots as stacks in 3D
이전 댓글 표시
Hi. I have multiple 2D contour plots and i want to stack them as slice views in 3D. I want to stack fig 1 at specific line for example at X=0, the next fig 2 at position X= 0.25. Can someone tell me how can i do that. Kind regards
답변 (1개)
[X,Y,C] = peaks(100) ;
figure
hold on
for i = 1:10
Z = i*ones(size(X)) ;
Ci = rand*C ;
surf(X,Y,Z,C)
end
view(3)
댓글 수: 3
Kaushal Kishore
2021년 6월 9일
KSSV
2021년 6월 9일
You said already you have the data right? In the surf function use your data. Extend the given demo code to your case.
Kaushal Kishore
2021년 6월 9일
카테고리
도움말 센터 및 File Exchange에서 Contour Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
