summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Gabriel Young <jean.gabriel.young@gmail.com>2019-04-25 06:52:13 -0400
committerDan Schult <dschult@colgate.edu>2019-04-25 20:52:13 +1000
commit8b6bdc899e8f5d2e4f88a55c3f1c16844efbed0c (patch)
treef583591ff968735c6637298e0a4fb9683919bf09
parentf210354d2657c01c648896bfc02236b8ef312555 (diff)
downloadnetworkx-8b6bdc899e8f5d2e4f88a55c3f1c16844efbed0c.tar.gz
Add see also links (#3403)
-rw-r--r--networkx/linalg/graphmatrix.py1
-rw-r--r--networkx/linalg/laplacianmatrix.py2
-rw-r--r--networkx/linalg/modularitymatrix.py4
3 files changed, 5 insertions, 2 deletions
diff --git a/networkx/linalg/graphmatrix.py b/networkx/linalg/graphmatrix.py
index 546c5c5b..d870d94d 100644
--- a/networkx/linalg/graphmatrix.py
+++ b/networkx/linalg/graphmatrix.py
@@ -158,6 +158,7 @@ def adjacency_matrix(G, nodelist=None, weight='weight'):
to_numpy_matrix
to_scipy_sparse_matrix
to_dict_of_dicts
+ adjacency_spectrum
"""
return nx.to_scipy_sparse_matrix(G, nodelist=nodelist, weight=weight)
diff --git a/networkx/linalg/laplacianmatrix.py b/networkx/linalg/laplacianmatrix.py
index 15899545..f6edd44e 100644
--- a/networkx/linalg/laplacianmatrix.py
+++ b/networkx/linalg/laplacianmatrix.py
@@ -51,6 +51,7 @@ def laplacian_matrix(G, nodelist=None, weight='weight'):
--------
to_numpy_matrix
normalized_laplacian_matrix
+ laplacian_spectrum
"""
import scipy.sparse
if nodelist is None:
@@ -105,6 +106,7 @@ def normalized_laplacian_matrix(G, nodelist=None, weight='weight'):
See Also
--------
laplacian_matrix
+ normalized_laplacian_spectrum
References
----------
diff --git a/networkx/linalg/modularitymatrix.py b/networkx/linalg/modularitymatrix.py
index 7d7a1a06..c1180da5 100644
--- a/networkx/linalg/modularitymatrix.py
+++ b/networkx/linalg/modularitymatrix.py
@@ -63,8 +63,8 @@ def modularity_matrix(G, nodelist=None, weight=None):
See Also
--------
to_numpy_matrix
+ modularity_spectrum
adjacency_matrix
- laplacian_matrix
directed_modularity_matrix
References
@@ -138,8 +138,8 @@ def directed_modularity_matrix(G, nodelist=None, weight=None):
See Also
--------
to_numpy_matrix
+ modularity_spectrum
adjacency_matrix
- laplacian_matrix
modularity_matrix
References