view plotEig.m @ 340:25ae8333ce2b feature/beams

scheme.Beam: Fixed stability of free bc.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 31 Oct 2016 16:25:46 +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