Mercurial > repos > public > sbplib
view plotEig.m @ 1220:4dc295afe473
Merged in feature/d2_compatible (pull request #15)
OpSet for fully compatible D2Variable
Approved-by: Vidar Stiernström <vidar.stiernstrom@it.uu.se>
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 13 Nov 2019 23:36:19 +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