neighbor_graph | R Documentation |
construct neighborhood graph from surface mesh using edge weights.
neighbor_graph(x, radius, edgeWeights, nodes, ...)
## S4 method for signature 'igraph,numeric,missing,missing'
neighbor_graph(
x,
radius,
distance_type = c("geodesic", "euclidean", "spherical")
)
## S4 method for signature 'SurfaceGeometry,numeric,missing,missing'
neighbor_graph(
x,
radius,
distance_type = c("geodesic", "euclidean", "spherical")
)
## S4 method for signature 'SurfaceGeometry,numeric,numeric,missing'
neighbor_graph(
x,
radius,
edgeWeights,
distance_type = c("geodesic", "euclidean", "spherical")
)
## S4 method for signature 'SurfaceGeometry,numeric,numeric,integer'
neighbor_graph(
x,
radius,
edgeWeights,
nodes,
distance_type = c("geodesic", "euclidean", "spherical")
)
## S4 method for signature 'SurfaceGeometry,numeric,missing,integer'
neighbor_graph(
x,
radius,
nodes,
distance_type = c("geodesic", "euclidean", "spherical")
)
x |
surface mesh |
radius |
the edge radius defining the neighborhood |
edgeWeights |
vector of edgeWeights used to define edge distance. |
nodes |
the subset of nodes to use |
... |
extra arguments |
distance_type |
the distance function |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.