Mercurial > repos > public > sbplib
view plotEig.m @ 441:e1d11b6a68d8 feature/grids
Add string methods to OpSets that are missing them
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 13 Mar 2017 14:43:37 +0100 |
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