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[random] - creates a random graph on a given number of vertices
Calling Sequence
G:=random(n)
G:=random(n, m)
G:=random(n, 'prob'=x)
Parameters
G
-
graph or network
n
number of vertices required
m
number of edges (optional)
x
real number in [0,1] (optional, specify only if m not used)
Description
Important: The networks package has been deprecated.Use the superseding command GraphTheory[RandomGraphs] instead.
This procedure generates a variety of different types of random graphs. If only one argument n is specified, this is taken to be the number of vertices, and each edge of the complete graph on n vertices is assumed to be present with a probability of 1/2.
Extra arguments can be used to specify the number of edges m or the specific independent probability x with which a given edges occurs.
If m is specified, a random n-vertex m-edge simple undirected graph is constructed.
If x is specified, each undirected edge is chosen for inclusion "independently" with probability x.
This routine is normally loaded by using the command with(networks), but it may also be referenced by using the full name networks[random](...).
Examples
See Also
GraphTheory, GraphTheory[RandomGraphs], networks(deprecated)[addedge], networks(deprecated)[new], networks(deprecated)[petersen], with
Download Help Document