This commit is contained in:
2023-11-14 17:10:27 +08:00
commit d5a822831c
423 changed files with 5909 additions and 0 deletions

5
eigOfLaplacianAndB.m Normal file
View File

@ -0,0 +1,5 @@
function e = eigOfLaplacianAndB(A,B)
G = graph(A);
L = laplacian(G);
e = eig(-(L+B));
end