Jacob Spainhour

Results 3 comments of Jacob Spainhour

I was able to fix it, temporarily at least, by replacing line 431 in `visMPL.py`, ```python ax = Axes3D(fig) ``` to ```python ax = fig.add_subplot( 111, projection='3d' ) ```

As far as I can tell, taking $k < N$ doesn't pose an issue, since the method goes one-by-one through dominant eigenvalues, but there are plenty of other issues to...

I think it makes sense. There are probably situations where you only need a single eigenvalue/vector pair, maybe if you're trying to compute some sort of spectral norm? In that...