@@ -10,6 +10,9 @@ export Stress, stress
1010Compute graph layout using stress majorization. Takes adjacency matrix
1111representation of a network and returns coordinates of the nodes.
1212
13+ The main equation to solve is (8) in Gansner, Koren and North (2005,
14+ [doi 10.1007/978-3-540-31843-9_25](https://doi.org/10.1007/978-3-540-31843-9_25)).
15+
1316## Inputs:
1417- `adj_matrix`: Matrix of pairwise distances.
1518
@@ -51,23 +54,6 @@ representation of a network and returns coordinates of the nodes.
5154 - `(true, false, false)` : only pin certain coordinates
5255
5356- `seed=1`: Seed for random initial positions.
54-
55- ## Reference:
56- The main equation to solve is (8) of:
57-
58- @incollection{
59- author = {Emden R Gansner and Yehuda Koren and Stephen North},
60- title = {Graph Drawing by Stress Majorization}
61- year={2005},
62- isbn={978-3-540-24528-5},
63- booktitle={Graph Drawing},
64- seriesvolume={3383},
65- series={Lecture Notes in Computer Science},
66- editor={Pach, J\' anos},
67- doi={10.1007/978-3-540-31843-9_25},
68- publisher={Springer Berlin Heidelberg},
69- pages={239--250},
70- }
7157"""
7258@addcall struct Stress{Dim,Ptype,IT<: Union{Symbol,Int} ,FT<: AbstractFloat ,M<: AbstractMatrix } < :
7359 IterativeLayout{Dim,Ptype}
0 commit comments