Mercurial > repos > public > sbplib
view plotEig.m @ 1126:465fc81e12e8 feature/poroelastic
Copy-paste improved Curve class from feature/laplace_curvilinear_test
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Mon, 13 May 2019 10:18:55 -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