You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The size 1 case is degenerate, but should still work. The size 2 case correctly identifies the eigenvalues as zero (multiplicity 2) but doesn't choose eigenvalues to span the space. The size 3 case fails on an error in the house function. All cases could probably be handled by checking if the matrix is a zero matrix and then just returning zeros as the eigenvalues and the identity matrix as the eigenvector generator.
The text was updated successfully, but these errors were encountered:
The size 1 case is degenerate, but should still work. The size 2 case
correctly identifies the eigenvalues as zero (multiplicity 2) but doesn't
choose eigenvalues to span the space. The size 3 case fails on an error in
the house function. All cases could probably be handled by checking if
the matrix is a zero matrix and then just returning zeros as the
eigenvalues and the identity matrix as the eigenvector generator.
—
Reply to this email directly or view it on GitHubhttps://github.com//issues/50
.
Sébastien Loisel
Department of Mathematics
Heriot-Watt University
Riccarton EH14 4AS
United Kingdom
web: http://www.ma.hw.ac.uk/~loisel/
email: S.Loisel at hw.ac.uk
phone: +44 131 451 3234
fax: +44 131 451 3249
I noticed some errors on computing the eigenvalues of zero matrices (matrices consisting of all zeros).
Test definitions:
Results:
The size 1 case is degenerate, but should still work. The size 2 case correctly identifies the eigenvalues as zero (multiplicity 2) but doesn't choose eigenvalues to span the space. The size 3 case fails on an error in the
house
function. All cases could probably be handled by checking if the matrix is a zero matrix and then just returning zeros as the eigenvalues and the identity matrix as the eigenvector generator.The text was updated successfully, but these errors were encountered: