Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
networks[arrivals] - neighboring vertices found along incoming edges
Calling Sequence
arrivals (v, G);
arrivals (G)
Parameters
v
-
vertex or set of vertices of G
G
graph or network
Description
Important: The networks package has been deprecated. Use the superseding command GraphTheory[Arrivals] instead.
Given a vertex v of a graph G, this routine returns the set of vertices which are at the tail of edges directed into v or at the end of an undirected edge incident with v. Thus, undirected edges are treated as if they were bidirectional.
If v is a set of vertices then arrival is defined in terms of arrival into the subgraph induced by v in G.
When called with just the graph as a single argument, an arrivals table indexed by vertices is constructed. This table is not part of the graph data structure. In particular, this means that any direct assignments to this table have no effect on the graph itself.
The arrivals and departure information is constructed from the neighbors table which is automatically maintained by the main graph primitives such as addedge() and delete().
This routine is normally loaded via the command with(networks) but may also be referenced using the full name networks[arrivals](...).
Examples
See Also
GraphTheory, GraphTheory[Arrivals], networks(deprecated)[departures], networks(deprecated)[neighbors], with
Download Help Document