view plotEig.m @ 687:e8fc3aa1faf6 feature/poroelastic

Rename elastic scheme.
author Martin Almquist <malmquist@stanford.edu>
date Fri, 09 Feb 2018 13:34:27 -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