how ro make a cross section for a meshplot

조회 수: 12 (최근 30일)
Ayoub Mchayaa
Ayoub Mchayaa 2018년 1월 15일
답변: Darshan Ramakant Bhat 2018년 1월 18일
i just ploted a Sphere with a hole and i wanted to make the cross section von x-z axis .here there are the Code of my sphere.
phi=linspace(0.52,2.62,30); theta=linspace(0,2*pi,40); [theta,phi]=meshgrid(theta,phi); rho=2; X=rho*sin(phi).*cos(theta); Y=rho*sin(phi).*sin(theta); Z=rho*cos(phi); mesh(X,Y,Z,'EdgeColor','blue') hold on z=linspace(-sqrt(3),sqrt(3),40); theta=linspace(0,2*pi,40); [z,theta]=meshgrid(z,theta); r=1; x=r.*cos(theta); y=r.*sin(theta); mesh(x,y,z,'EdgeColor','red')

채택된 답변

Darshan Ramakant Bhat
Darshan Ramakant Bhat 2018년 1월 18일

추가 답변 (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