Mercurial > repos > public > sbplib
view plotEig.m @ 1079:ae4b090b5299
Bugfix missing semi-colon in Laplace1d.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 20 Feb 2019 16:14:15 -0800 |
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