Mercurial > repos > public > sbplib
view plotEig.m @ 1328:3a286d2d1939 feature/D2_boundary_opt
Merge with feature/FMMlabb
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Mon, 14 Feb 2022 11:14:46 +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