Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
networks[draw3d] - draw an undirected connected graph in 3-D
Calling Sequence
draw3d(G, opts )
Parameters
G
-
undirected graph
opts
(optional) plot options; see plot3d[option]
Description
Important: The networks package has been deprecated. Use the superseding package GraphTheory instead.
The draw3d(G, opts) routine draws an undirected connected graph in three dimensions in such a way that structure and symmetry in the graph is revealed. The graph G is input as a GRAPH data type as created in the networks package. The output is a three dimensional plot of labeled points with lines connecting them. The points correspond to the vertices in the graph and the lines correspond to the edges in the graph.
The location of the vertices of the graph is determined as follows. Let be the adjacency matrix of G and let , and be three eigenvectors of with corresponding second, third, and fourth largest eigenvalue in absolute value. Then the (x,y,z) coordinates of the ith vertex of G is ().
Sometimes other symmetries in the graph can be seen by using other eigenvectors. If the optional argument is specified, where e1, e2, and e3 are vertex numbers (integers from 1 through the number of vertices), the eigenvectors corresponding to the eigenvalues of these relative magnitudes are used.
If the graph is not connected, you can draw the connected components separately. The last example below shows how to do this.
Remaining arguments are interpreted as options which are specified as equations of the form option = value. The remaining options are the same as those available for the plot3d command. For more information, see plot3d[option].
The algorithm used is the same as that described for plots[graphplot3d(deprecated)]. The networks[draw3d] and plots[graphplot3d] commands are identical except they accept different forms of graph input.
Note: The plots[graphplot3d(deprecated)] command has been superseded by GraphTheory[DrawGraph].
Examples
An example of a graph that is not connected.
The number of connected components:
See Also
GraphTheory, GraphTheory[DrawGraph], GraphTheory[DrawNetwork], networks(deprecated)[draw], networks(deprecated)[induce], plot3d[option], plots[graphplot3d(deprecated)]
Download Help Document