Wolfram Function Repository
Instant-use add-on functions for the Wolfram Language
Function Repository Resource:
Produce random spatial graphs by sprinkling points into a flat (Euclidean) Riemannian manifold
ResourceFunction["FlatManifoldToGraph"][dim,n] produces a random sprinkling of n points into a flat (Euclidean) Riemannian manifold of dimension dim, assuming a discreteness scale of 1. | |
ResourceFunction["FlatManifoldToGraph"][dim,disc,n] produces a random sprinkling of n points with discreteness scale disc into a flat (Euclidean) Riemannian manifold of dimension dim. | |
ResourceFunction["FlatManifoldToGraph"][…,"prop"] gives the property "prop" for the specified flat (Euclidean) Riemannian manifold sprinkling. |
| "SpatialGraph" | spatial graph with vertex coordinates given by the underlying manifold coordinates |
| "Points" | plot of the sprinkled points only (without spatial edges) |
| "PointsList" | list of the manifold coordinates of all sprinkled points |
| "DiscretenessScale" | discreteness scale of the sprinkling |
| "PointsCount" | number of sprinkled points |
| "Dimensions" | number of dimensions in the continuum manifold approximation |
| "EdgeCount" | total number of spatial edges |
| "PureSpatialGraph" | spatial graph with vertex coordinate information removed |
| "Properties" | list of properties |
Produce a random sprinkling of 100 points into a 2-dimensional flat (Euclidean) manifold, with discreteness scale 0.3:
| In[1]:= |
|
| Out[1]= |
|
Show the spatial graph:
| In[2]:= |
|
| Out[2]= |
|
Show the pure spatial graph (with vertex coordinate information removed):
| In[3]:= |
|
| Out[3]= |
|
Produce a random sprinkling of 200 points into a 3-dimensional flat (Euclidean) manifold, with discreteness scale 0.3:
| In[4]:= |
|
| Out[4]= |
|
Show the spatial graph:
| In[5]:= |
|
| Out[5]= |
|
Show the pure spatial graph (with vertex coordinate information removed):
| In[6]:= |
|
| Out[6]= |
|
Plot the positions of the sprinkled points only (without spatial edges):
| In[7]:= |
|
| Out[7]= |
|
By default, the discreteness scale is assumed to be equal to 1:
| In[8]:= |
|
| Out[8]= |
|
Show the spatial graph:
| In[9]:= |
|
| Out[9]= |
|
Sprinklings can be performed in arbitrary (integer) numbers of dimensions:
| In[10]:= |
|
| Out[10]= |
|
| In[11]:= |
|
| Out[11]= |
|
In seven dimensions:
| In[12]:= |
|
| Out[12]= |
|
| In[13]:= |
|
| Out[13]= |
|
Properties can be requested directly from FlatManifoldToGraph:
| In[14]:= |
|
| Out[14]= |
|
Produce a random sprinkling of 200 points into a 2-dimensional flat (Euclidean) manifold, with discreteness scale 0.2:
| In[15]:= |
|
| Out[15]= |
|
Show the complete list of properties:
| In[16]:= |
|
| Out[16]= |
|
Show the spatial graph:
| In[17]:= |
|
| Out[17]= |
|
Plot the positions of the sprinkled points only (without spatial edges):
| In[18]:= |
|
| Out[18]= |
|
Show a complete list of manifold coordinates for the sprinkled points:
| In[19]:= |
|
| Out[19]= |
|
Show the discreteness scale:
| In[20]:= |
|
| Out[20]= |
|
Show the number of dimensions in the background manifold:
| In[21]:= |
|
| Out[21]= |
|
Show the total number of spatial edges:
| In[22]:= |
|
| Out[22]= |
|
Show the pure spatial graph (with vertex coordinate information removed):
| In[23]:= |
|
| Out[23]= |
|
This work is licensed under a Creative Commons Attribution 4.0 International License