view plotEig.m @ 551:c5a7a13c03dc feature/grids/laplace_refactor

Switch to using spdiag instead of spdiags
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 28 Aug 2017 19:01:40 +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