Spectral layout
Spectral layout is a class of algorithm for drawing graphs. The layout uses the eigenvectors of a matrix, such as the Laplace matrix of the graph, as Cartesian coordinates of the graph's vertices.
The idea of the layout is to compute the two largest eigenvalues and corresponding eigenvectors of the laplacian matrix of the graph and then use those for actually placing the nodes.
Usually nodes are placed in the 2 dimensional plane, an embedding into more dimensions can be found by using more eigenvectors.
For actually placing a node from a graph which corresponds to a row/column i in the laplacian matrix, the x-coordinate is the value of the i-th coordinate of the first eigenvector.
Correspondingly the i-th component of the second eigenvector describes the y-coordinate of the point i.