Mercurial > repos > public > sbplib
view plotEig.m @ 216:8b10476b9bb7 feature/beams
multiblock: Fixed some problems in DiffOp and Grid.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 22 Jun 2016 14:44:03 +0200 |
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