Matlab 3D graphing (graph slicing)?
이전 댓글 표시
How can I "plot the function d=x*y*e^(-sqrt(x^2+y^2+x^2)) along the x=y diagonal"? Do I use the "contourslice" command? How? Thanks.
댓글 수: 1
Patrick Kalita
2013년 1월 29일
Did you mean d=x*y*e^(-sqrt(x^2+y^2+z^2))? Your original question has two x^2 terms in the sqrt.
답변 (1개)
Azzi Abdelmalek
2013년 1월 27일
X=1:10
y=x
z=cos(x+y) % use your function
Plot3(x,y,z)
카테고리
도움말 센터 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!