Mercurial > repos > public > sbplib
view plotEig.m @ 759:2645188489f6 feature/d1_staggered
Bugfix? in +scheme/bcSetup.m
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Mon, 18 Jun 2018 16:32:23 -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