view plotEig.m @ 501:b7280c6c6b9a feature/quantumTriangles

Found some small bugs when making slides for pressentation
author Ylva Rydin <ylva.rydin@telia.com>
date Tue, 25 Apr 2017 09:52:32 +0200
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