MATLAB Draw a polygon from line equation

  • Thread starter Thread starter minhduc515
  • Start date Start date
  • Tags Tags
    Line Polygon
AI Thread Summary
To draw a quadrilateral in MATLAB using line equations, the key is to plot the lines defined by the equations and ensure they intersect to form the vertices of the polygon. The process involves solving pairs of equations to find the intersection points, which serve as the vertices. Once the coordinates of the four vertices are determined, the lines can be drawn between them without extending beyond the intersections. The plot or fplot functions can be utilized for visualization, and it is essential to use the "hold on" command to overlay the lines correctly. The discussion emphasizes that finding intersections is straightforward through solving a linear system, and the solve function in MATLAB can facilitate this process.
minhduc515
Messages
9
Reaction score
1
I'm trying to draw a quadrilateral in matlab. I has 4 line equations.
Can i draw that polygon, using line equations ? I knew MATLAB can draw polygon from coordinates, but i don't want to use it.
 
Physics news on Phys.org
You're saying that you want to draw a quadrilateral, and you have the equations of the four sides. Then just plot those lines, and they should intersect to give you the quadrilateral. Use the plot or fplot functions to plot the lines. Remember to use hold on between drawing the graphs.
 
Yes, i tried, but i don't want to have leftovers between two lines
 
minhduc515 said:
Yes, i tried, but i don't want to have leftovers between two lines
Are you saying that you don't want the sides be extended? In that case, you'll have to solve two equations at a time and find the coordinates of the four vertices. Then draw the lines from one vertex to the other, i.e. range ##x## from one vertex to the other, find ##y## for intermediate points, and plot.If you give the four equations, I can help you start.
 
  • Like
Likes minhduc515
This is my polygon. a,b,Z are constants
I think it's hard to find intersect between lines, so it's the reason why i don't want using coordinates to plot
240772
 
minhduc515 said:
This is my polygon. a,b,Z are constants
I think it's hard to find intersect between lines, so it's the reason why i don't want using coordinates to plot
Two small questions: 1. One axis is X, the other is y or R? 2. Is everything other than x and you a constant (including z)?
 
  • Like
Likes minhduc515
1. One axis is X, the other is R
2. Z, b and a are constant
 
  • Like
Likes Wrichik Basu
minhduc515 said:
I think it's hard to find intersect between lines
Finding the intersection between two lines is just a matter of solving a trivial linear system ...
 
Orodruin said:
Finding the intersection between two lines is just a matter of solving a trivial linear system ...
And it can be done using solve function.

To the OP: that's what you have to do. I can't connect to MATLAB currently from my phone (I have poor network), so I cannot try at this moment. Your variables are ##x## and ##R##. Use the above function to solve the equations.
 
  • Like
Likes minhduc515

Similar threads

Replies
12
Views
3K
Replies
2
Views
2K
Replies
6
Views
2K
Replies
2
Views
2K
Replies
2
Views
3K
Replies
5
Views
2K
Replies
2
Views
1K
Back
Top