view plotEig.m @ 604:082c7bf3192e feature/grids

Remove unused output
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 04 Oct 2017 13:41:58 +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