Mercurial > repos > public > sbplib
view plotEig.m @ 493:6b8297f66c91 feature/quantumTriangles
Commit before merge
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Thu, 23 Feb 2017 09:31:56 +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