view plotEig.m @ 819:fdf0ef9150f4

Added tag v0.2 for changeset b723495cdb2f
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 07 Sep 2018 14:39:38 +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