view plotEig.m @ 731:c3b460a7d7ac feature/poroelastic

Hack in multiblockDiffOp, probably not Werpers-compatible.
author Martin Almquist <malmquist@stanford.edu>
date Sat, 21 Apr 2018 16:08:48 -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