How to create Hexagonal Cell in MATLAB?
Algorithm:
1)First you should know , how to plot unit circle in MATLAB.
For that , check the video given below.
2) All vertices of a regular polygon lie on a common circle (the circumscribed circle); i.e., they are concyclic points. That is, a regular polygon is a cyclic polygon.
For detail explanation , check the wiki page (link given below)
https://en.wikipedia.org/wiki/Regular_polygon
3)So we shall use this concept to plot regular hexagon.
4)Just we have to keep the increment of angle as 60 degree (pi/3) .[You can clearly understand this from the diagram given below]
1)First you should know , how to plot unit circle in MATLAB.
For that , check the video given below.
2) All vertices of a regular polygon lie on a common circle (the circumscribed circle); i.e., they are concyclic points. That is, a regular polygon is a cyclic polygon.
For detail explanation , check the wiki page (link given below)
https://en.wikipedia.org/wiki/Regular_polygon
3)So we shall use this concept to plot regular hexagon.
4)Just we have to keep the increment of angle as 60 degree (pi/3) .[You can clearly understand this from the diagram given below]
Code:
Check the video:
No comments