view plotEig.m @ 843:f63b99f0729d feature/burgers1d

Minor rewrite of RK4RV
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Mon, 17 Sep 2018 11:08:23 +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