[Math] Generalized eigenvalue solver online

eigenvalues-eigenvectorslearningmatricesonline-resources

For demonstrative purposes, I am trying to find an online solver where alumni can input data of two matrices A and B, then the system outputs the first eigenvalues and eigenvectors in the generalized eigenvalue problem. Do you know any?

Best Answer

Go to compileonline.com's Matlab/octave page, enter the following, and click on "Execute Script":

A = rand(3);
B = rand(3);
[V,D] = eig(A,B)

Unfortunately their Python page doesn't seem to support numpy, but they also support R if you like that. Another option for octave specifically is Octave online, but it only supports line-by-line interpretation of input. Both support plotting.

Related Question