I have a vector containing some points in 2-D space. I want MATLAB to plot these points with lines drawn from every point to every other point. Basically, I want a graph with all vertices connected. Can you do that with plot and if so, how?
|
One solution is to create a set of indices for every combination of points using the function MESHGRID. You can then plot each line using the function LINE (which plots one line per column of data it's given):
EDIT: You may notice that the above solution will plot a line for every connection, meaning that it will plot lines of zero length connecting points to themselves and will plot 2 lines for every connection (i.e. from point A to point B and from point B to point A). Here's another solution (using the functions HANKEL and FIND) that won't plot the redundant or unnecessary lines:
Both of the above solutions create visually identical plots:
A note on timing... Out of curiosity, I thought I'd time my HANKEL solution and compare it with Amro's very terse NCHOOSEK solution. For
I was kind of surprised, until I looked at the code for NCHOOSEK (by typing
|
|||||||
|
|
Building on gnovice's example, a simpler more intuitive way of generating all pairs is using the nchoosek function:
|
|||||||||||||||
|


