plot a hexagonal figure

조회 수: 4 (최근 30일)
mohammad mortezaie
mohammad mortezaie 2021년 8월 3일
댓글: Adam Danz 2021년 8월 18일
I need to plot a hexagonal figure like (a) part of this image.
How can i do that?
  댓글 수: 5
mohammad mortezaie
mohammad mortezaie 2021년 8월 3일
it's solved.
Thank you
Adam Danz
Adam Danz 2021년 8월 18일
Please do not ask duplicate questions in the future.

댓글을 달려면 로그인하십시오.

채택된 답변

Adam Danz
Adam Danz 2021년 8월 3일
th = linspace(0,2*pi,7) + pi/6;
x = sin(th);
y = cos(th);
figure()
tiledlayout(1,2)
nexttile()
plot(x,y,'k-o','markerSize',3,'MarkerFaceColor','k')
axis equal
axis padded
nexttile()
hold on
zDist = .3;
plot3(x(:)*[1,1],y(:)*[1,1],zDist.*[-.5,.5].*ones(numel(x),1),'k-')
plot3([1;1]*x(:)', [1;1]*y(:)',zDist.*[-.5,.5],'k-')
zlim([-1,1])
view(-50,15)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by