plot a hexagonal figure

2 views (last 30 days)
mohammad mortezaie
mohammad mortezaie on 3 Aug 2021
Commented: Adam Danz on 18 Aug 2021
I need to plot a hexagonal figure like (a) part of this image.
How can i do that?
  5 Comments
mohammad mortezaie
mohammad mortezaie on 3 Aug 2021
it's solved.
Thank you
Adam Danz
Adam Danz on 18 Aug 2021
Please do not ask duplicate questions in the future.

Sign in to comment.

Accepted Answer

Adam Danz
Adam Danz on 3 Aug 2021
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)

More Answers (0)

Categories

Find more on Contour Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!