How to plot this equation in 3D?
이전 댓글 표시
Dear all,
How do I plot this on matlab?
Z = [(1/x)^2 +y^2]^(1/2)
Thanks.
답변 (2개)
Basil C.
2018년 9월 24일
You could use the following code
syms x y
z = ((1/x)^2 +y^2)^(1/2)
ezsurf(z)
카테고리
도움말 센터 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!