view plotEig.m @ 64:7067bf8adbfa

Fixed some typing and added function to plot eigen values of a matrix.
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 18 Nov 2015 17:14:19 +0100
parents
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