File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ by vertex. Default values for `T` are the same as those in
111
111
Converts the matrix to dense with ``nv^2`` memory usage.
112
112
113
113
### Implementation Notes
114
- Use `eigs( laplacian_matrix(g); kwargs ...)` to compute some of the
114
+ Use `eigvals(Matrix( laplacian_matrix(g, args ...)) )` to compute some of the
115
115
eigenvalues/eigenvectors.
116
116
"""
117
117
laplacian_spectrum (g:: AbstractGraph , T:: DataType = Int; dir:: Symbol = :unspec ) = eigvals (Matrix (laplacian_matrix (g, T; dir= dir)))
@@ -130,7 +130,7 @@ by vertex. Default values for `T` are the same as those in
130
130
Converts the matrix to dense with ``nv^2`` memory usage.
131
131
132
132
### Implementation Notes
133
- Use `eigs( adjacency_matrix(g); kwargs ...)` to compute some of the
133
+ Use `eigvals(Matrix( adjacency_matrix(g, args ...)) )` to compute some of the
134
134
eigenvalues/eigenvectors.
135
135
"""
136
136
function adjacency_spectrum (g:: AbstractGraph , T:: DataType = Int; dir:: Symbol = :unspec )
You can’t perform that action at this time.
0 commit comments