python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is eigenvector centrality in igraph wrong?
I am trying to improve my understanding of eigenvector centrality. This overview from the University of Washington was very helpful, especially when read in conjunction with this R code. However, wh...
ZacharyST
Votes: 0
Answers: 1
A function to compute the eigenvalues in R when some are repeated
Following this post and more specifically this answer, I am trying to build from scratch an eigen() function in R to compute eigenvalues and eigenvectors. However, I have stumbled accross the problems...
POC
Votes: 0
Answers: 1
Creating a cube that is normal to an eigenspace in Matplotlib.pyplot
I am trying to make a cube where all the sides are normal to each of the eigenvectors, as a way to visualize principle stresses given any possible normal and shear stresses in 3d. I've tried using sim...
Spenser Scruggs
Votes: 0
Answers: 1
Creating a function that returns a dictionary with eigenvalue and eigenvector
I'm trying to create a function in Python that returns a dictionary with an eigenvector and it's corresponding eigenvalue:
This is my working code so far:
def eigenvectors(a):
b = np.matrix(a)
...
runner16
Votes: 0
Answers: 1