Mercurial > repos > public > sbplib
view plotEig.m @ 671:993aac771efd feature/d1_staggered
Correct characteristic BC in staggered acoustics 1D constant coeff.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 27 Dec 2017 17:18:51 +0100 |
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