Mercurial > repos > public > sbplib
view plotEig.m @ 605:0f9d20dbb7ce feature/utux2D
Add centered interface coupling in addition to upwind
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Thu, 05 Oct 2017 20:21:20 -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