view plotEig.m @ 497:4905446f165e feature/quantumTriangles

Added 2D interface to shrodinger
author Ylva Rydin <ylva.rydin@telia.com>
date Sat, 25 Feb 2017 12:44:01 +0100
parents 7067bf8adbfa
children
line wrap: on
line source

% Plots all the eigen values for a sparse matrix.
function plotEig(A)
    e = eig(full(A));
    e = sort(e);
    plot(e,'.')
end