view plotEig.m @ 596:4bb298faa8dc feature/better_multiblock_defs

Add more boundary groups in Rectangle. Bugfix in boundaryGroups.all.
author Martin Almquist <malmquist@stanford.edu>
date Tue, 26 Sep 2017 13:28:12 -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