Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
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