Intersection between a sphere x^2+y^2+z^2 =6 and paraboloid z=x^2+y^2

조회 수: 6 (최근 30일)
F.O
F.O 2017년 10월 5일
답변: KSSV 2017년 10월 6일
I want to draw both sphere x^2+y^2+z^2=6 and paraboloid z=x^2+y^2 in 3D to determine the integration region that is the solid region inside the sphere and above the paraboloid. I tried
[x,y,z] = sphere; surf(x*sqrt(6), y*sqrt(6), z*sqrt(6));
axis equal;
hold on
x=[-2.5:1:2.5]
y=[-2.5:1:2.5]
[x,y]=meshgrid(x,y)
meshc(x.^2+y.^2,x,y)
axis equal;
but i don't get the correct drawing and the paraboloid is got drawn outside the sphere.

채택된 답변

KSSV
KSSV 2017년 10월 6일

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by