view plotEig.m @ 1202:31d7288d0653 feature/poroelastic

Make Anisotropic work for mixed displacement/traction BC at the same boundary.
author Martin Almquist <malmquist@stanford.edu>
date Thu, 05 Sep 2019 16:41:49 -0700
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