New Reply

Draw Lines between Points in MATLAB

 
Share Thread Thread Tools
Apr14-11, 06:54 PM   #1
 

Draw Lines between Points in MATLAB


Hi,

I have a matrix V, which is a 5-by-2 matrix, where each row represents a point in the xy-plain. How can I connect these points together in MATLAB, please?

Thanks in advance
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Galaxies fed by funnels of fuel
>> The better to see you with: Scientists build record-setting metamaterial flat lens
>> Google eyes emerging markets networks
Apr14-11, 07:41 PM   #2
 
Blog Entries: 9
Recognitions:
Gold Membership Gold Member
plot(V(:,1),V(:,2)) should do it, if I remember my matrix slicing.
Apr14-11, 07:45 PM   #3
 
Quote by jhae2.718 View Post
plot(V(:,1),V(:,2)) should do it, if I remember my matrix slicing.
Ya, I tried this, but it does not work. It connects just between three points. I need to connect between all points to form a closed graph, starting from a point and ending at the same point.

Thanks
Apr14-11, 07:50 PM   #4
 
Blog Entries: 9
Recognitions:
Gold Membership Gold Member

Draw Lines between Points in MATLAB


It only plots three points?

I think you should be able to get a connected graph by appending the start point onto the matrix (getting a 6x2) and then using plot.
Apr14-11, 08:02 PM   #5
 
Quote by jhae2.718 View Post
It only plots three points?

I think you should be able to get a connected graph by appending the start point onto the matrix (getting a 6x2) and then using plot.
Thank you very much. It is now working perfectly.
Apr14-11, 08:16 PM   #6
 
Blog Entries: 9
Recognitions:
Gold Membership Gold Member
Glad to hear it.
Apr14-11, 08:17 PM   #7
 
Quote by jhae2.718 View Post
Glad to hear it.
If I want to extend it to 3D, is it straightforward to do that?
Apr14-11, 08:20 PM   #8
 
Blog Entries: 9
Recognitions:
Gold Membership Gold Member
You should probably be able to do something similar with plot3() for lines in R3.
Apr14-11, 10:47 PM   #9
 
Quote by jhae2.718 View Post
You should probably be able to do something similar with plot3() for lines in R3.
That indeed works, but this connects all the points together. Actually, in 3D I just want to connect the adjacent points only. How can I do that?
Apr14-11, 10:58 PM   #10
 
Blog Entries: 9
Recognitions:
Gold Membership Gold Member
Quote by S_David View Post
That indeed works, but this connects all the points together. Actually, in 3D I just want to connect the adjacent points only. How can I do that?
I'm not sure what exactly you mean by this...
Apr14-11, 11:01 PM   #11
 
Quote by jhae2.718 View Post
I'm not sure what exactly you mean by this...
Neither do I. But basically, V is a matrix that contains the vertices of a polytope, and I want just to connect the adjacent vertices not all together. I am not sure how to know what are the adjacent vertices from V.

Thanks
Apr14-11, 11:24 PM   #12
 
Blog Entries: 9
Recognitions:
Gold Membership Gold Member
You may have to break the matrix up into matrices such that plot3 will produce the lines connected the way you want.

Another option is to look on the file exchange and see if there's anything you can use there. http://www.mathworks.com/matlabcentral/fileexchange/
Apr15-11, 11:09 AM   #13
 
Quote by jhae2.718 View Post
You may have to break the matrix up into matrices such that plot3 will produce the lines connected the way you want.

Another option is to look on the file exchange and see if there's anything you can use there. http://www.mathworks.com/matlabcentral/fileexchange/
Ok, I will. Thank you.
Apr15-11, 02:55 PM   #14
 
Blog Entries: 9
Recognitions:
Gold Membership Gold Member
I think there may be a file on the exchange that will do what you want, otherwise I'm afraid I don't know of a built in function that will do what you want on only one call.
New Reply
Thread Tools


Similar Threads for: Draw Lines between Points in MATLAB
Thread Forum Replies
draw a simpl graph in matlab Math & Science Software 2
Points, Lines, and Planes in 3D Space! Given 3 points find a plane... Calculus & Beyond Homework 10
How can I draw graphs for the equation on matlab Math & Science Software 1
points and lines Introductory Physics Homework 1
Two lines intersect at three points??? General Math 2