Mercurial > repos > public > sbplib
view plotEig.m @ 110:f5ed7ff58115
Changed so that closures accepts bc data instead of the closure cretaorChanged so that closures accepts bc data instead of the closure cretaors.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 08 Dec 2015 13:03:04 +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