view plotEig.m @ 664:8e6dfd22fc59 feature/poroelastic

Free BC now yields symmetric negative semidefinite discretization.
author Martin Almquist <malmquist@stanford.edu>
date Fri, 15 Dec 2017 16:23:10 -0800
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