L = laplacian(G)는 그래프 라플라시안 행렬(Laplacian Matrix) L을 반환합니다. 각각의 대각선 요소 L(j,j)는 노드 j의 차수인 degree(G,j)로 지정됩니다. L의 비대각선 요소는 G의 간선을 나타냅니다. 즉, 노드 i와 노드 j 사이에 간선이 있을 경우 L(i,j) = L(j,i) = -1이 되고, 그렇지 않을 경우 L(i,j) = L(j,i) = 0이 됩니다. 입력 그래프 G는 다중 그래프이거나 자가 루프를 포함할 수 없으며, 간선 가중치는 무시됩니다.
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.