Mercurial > repos > public > sbplib
view plotEig.m @ 1275:8ff3a95ad7cc feature/poroelastic
Change metric computation in CurvilinearUpwind so that one can use odd orders for the diffOp
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 03 Jun 2020 10:29:53 -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