Mercurial > repos > public > sbplib
view plotEig.m @ 666:2d85f17a8aec feature/utux2D
Add possibility for damping terms at interpolation interface.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Mon, 16 Oct 2017 21:56:12 -0700 |
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