Mercurial > repos > public > sbplib
view plotEig.m @ 1085:49c0b8c7330a feature/laplace_curvilinear_test
Clean up Dirichlet BC code in LaplaceCurvilinearNew.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Fri, 29 Mar 2019 14:24:39 -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