Mercurial > repos > public > sbplib
view plotEig.m @ 1095:3b2acd1117b9 feature/laplace1dUpdate
Close branch feature/laplace1dUpdate
author | Jonatan Werpers <jonatan.werpers@it.uu.se> |
---|---|
date | Mon, 08 Apr 2019 20:15:37 +0000 |
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